diff --git a/Changelog.md b/Changelog.md index 951b8a0207c914d9619533925095834b13569438..4d21100a47fd4d27e6da4e04eb85794038dac1b0 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. +## [0.8] - 2023-08-23 +- Added cleanup of events for deleted checks so the GUI is usable + ## [0.7] - 2022-10-19 - POL1-624: Allow supporting GTT as a GWS Direct ISP diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..a047e435811c03a31e4c65c0d7ca9b7ce8d0cb2a --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 GÉANT Vereniging + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/brian_polling_manager/main.py b/brian_polling_manager/main.py index 90ba9f94c8841906efaa2f50bab5a7f4c518781e..1228b238a0b512b172b8cc631e8e646ca81e4797 100644 --- a/brian_polling_manager/main.py +++ b/brian_polling_manager/main.py @@ -100,6 +100,9 @@ def refresh(config, force=False): } jsonschema.validate(result, REFRESH_RESULT_SCHEMA) # sanity + # remove events for deleted checks, otherwise they stick around forever + sensu.clean_events(config['sensu']) + statsd_config = config.get('statsd', None) if statsd_config: for key, counts in result.items(): diff --git a/brian_polling_manager/sensu.py b/brian_polling_manager/sensu.py index 1ac0bf705ca11978dabdc480f7959e1591eec132..9252b6a3528838572f664c1a5242845cd4d11630 100644 --- a/brian_polling_manager/sensu.py +++ b/brian_polling_manager/sensu.py @@ -5,6 +5,7 @@ import copy import logging import random import requests +from datetime import datetime logger = logging.getLogger(__name__) @@ -100,6 +101,38 @@ def checks_match(a, b) -> bool: return True +def clean_events(params, namespace='default'): + logger.info('cleaning events for deleted checks') + url = random.choice(params['api-base']) + r = requests.get(f'{url}/api/core/v2/namespaces/{namespace}/events', + headers={'Authorization': f'Key {params["api-key"]}'}) + r.raise_for_status() + + events = r.json() + + all_checks = load_all_checks(params, namespace) + check_names = {c['metadata']['name'] for c in all_checks} + + with requests.Session() as session: + session.headers.update({'Authorization': f'Key {params["api-key"]}'}) + for event in events: + if event['check']['metadata']['name'] not in check_names: + last_execution = event['check']['executed'] + days_since_last_execution = (datetime.utcnow() - datetime.fromtimestamp(last_execution)).days + + if days_since_last_execution <= 1: + continue + + logger.info(f'deleting event for deleted check: ' + f'{event["check"]["metadata"]["name"]}' + f' (last execution: {days_since_last_execution} days ago)') + r = session.delete( + f'{url}/api/core/v2/namespaces/{namespace}/events/' + f'{event["entity"]["metadata"]["name"]}/' + f'{event["check"]["metadata"]["name"]}') + r.raise_for_status() + + class AbstractCheck(object): """ not explicitly using abc.ABC ... more readable than stacks of decorators @@ -230,7 +263,6 @@ def refresh(sensu_params, required_checks, current_checks): :param current_checks: dict of {name:check_dict} from sensu :return: dict with change counts """ - # cf. main.REFRESH_RESULT_SCHEMA result = { 'checks': len(current_checks), diff --git a/setup.py b/setup.py index 8a62135402cc5662c6923594ae7470f15814ef7b..b525421d7b28391727d9dd0ade55c8b053489009 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='brian-polling-manager', - version="0.7", + version="0.8", author='GEANT', author_email='swd@geant.org', description='service for managing BRIAN polling checks', @@ -21,4 +21,6 @@ setup( ] }, include_package_data=True, + license='MIT', + license_files=('LICENSE.txt',) ) diff --git a/test/conftest.py b/test/conftest.py index 529e19ac6ed0491320d3e91ab9b91f625794148f..3117fa9779fe25ba399bd6a4e966e62055810b82 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -171,6 +171,25 @@ def mocked_sensu(): r'.*sensu.+/api/core/v2/namespaces/[^\/]+/checks/[^\/]+$'), callback=delete_check_callback) + def get_events_callback(request): + return 200, {}, _load_test_data('events.json') + + # mocked api for returning all events + responses.add_callback( + method=responses.GET, + url=re.compile(r'.*sensu.+/api/core/v2/namespaces/[^\/]+/events$'), + callback=get_events_callback) + + def delete_event_callback(request): + return 204, {}, '' + + # mocked api for deleting an event + responses.add_callback( + method=responses.DELETE, + url=re.compile( + r'.*sensu.+/api/core/v2/namespaces/default/events/.*$'), + callback=delete_event_callback) + yield saved_sensu_checks diff --git a/test/data/events.json b/test/data/events.json new file mode 100644 index 0000000000000000000000000000000000000000..5eab4a0d86e69a88a21114efd1865d9539fd4ab9 --- /dev/null +++ b/test/data/events.json @@ -0,0 +1,766802 @@ +[ + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren RedIRIS --isp Cogent --tag b", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "130.206.206.253", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.581296542, + "executed": 1692789457, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784053 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785254 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787356 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787957 + }, + { + "status": 0, + "executed": 1692788257 + }, + { + "status": 0, + "executed": 1692788557 + }, + { + "status": 0, + "executed": 1692788857 + }, + { + "status": 0, + "executed": 1692789157 + }, + { + "status": 0, + "executed": 1692789457 + } + ], + "issued": 1692789457, + "output": "2023-08-23 11:17:38,090 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:38,090 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:38,090 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:38,090 - brian_sensu_utils.gws_direct - DEBUG - nren: RedIRIS\n2023-08-23 11:17:38,090 - brian_sensu_utils.gws_direct - DEBUG - isp: Cogent\n2023-08-23 11:17:38,090 - brian_sensu_utils.gws_direct - DEBUG - tag: b\n2023-08-23 11:17:38,093 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:38,112 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=RedIRIS,isp=Cogent,tag=b traffic_in=11223503487674,traffic_out=20495102735468\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789457, + "occurrences": 157, + "occurrences_watermark": 157, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-RedIRIS-Cogent-b", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:130.206.206.253" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "130.206.206.253", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dd7f81b5-666d-4b30-94a7-f7451e55d3a3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789458 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren RedIRIS --isp CenturyLink --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "130.206.212.253", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.654772479, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789479, + "output": "2023-08-23 11:18:00,710 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:18:00,710 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:18:00,710 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:18:00,710 - brian_sensu_utils.gws_direct - DEBUG - nren: RedIRIS\n2023-08-23 11:18:00,710 - brian_sensu_utils.gws_direct - DEBUG - isp: CenturyLink\n2023-08-23 11:18:00,710 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:18:00,715 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:18:00,749 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=RedIRIS,isp=CenturyLink,tag=a traffic_in=27128196425880,traffic_out=15741582055875\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 157, + "occurrences_watermark": 157, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-RedIRIS-CenturyLink-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:130.206.212.253" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "130.206.212.253", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "420926a5-1483-487f-9868-ab39e1a59448", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren RedIRIS --isp Cogent --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "130.206.212.253", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.559164286, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786447 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "2023-08-23 11:17:29,068 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:29,068 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:29,068 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:29,068 - brian_sensu_utils.gws_direct - DEBUG - nren: RedIRIS\n2023-08-23 11:17:29,068 - brian_sensu_utils.gws_direct - DEBUG - isp: Cogent\n2023-08-23 11:17:29,068 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:17:29,071 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:29,098 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=RedIRIS,isp=Cogent,tag=a traffic_in=0,traffic_out=414\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 157, + "occurrences_watermark": 157, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-RedIRIS-Cogent-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:130.206.212.253" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "130.206.212.253", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3fec9c12-30e9-4a3a-9f04-bf74c63dff4f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren RoEduNet --isp Cogent --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "149.6.50.10", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.54262509, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783474 + }, + { + "status": 0, + "executed": 1692783774 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "2023-08-23 11:18:00,090 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:18:00,091 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:18:00,091 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:18:00,091 - brian_sensu_utils.gws_direct - DEBUG - nren: RoEduNet\n2023-08-23 11:18:00,091 - brian_sensu_utils.gws_direct - DEBUG - isp: Cogent\n2023-08-23 11:18:00,091 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:18:00,094 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:18:00,135 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=RoEduNet,isp=Cogent,tag=a traffic_in=2985425994111,traffic_out=306317070587\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 2025, + "occurrences_watermark": 2025, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-RoEduNet-Cogent-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:149.6.50.10" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "149.6.50.10", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3663745e-9ea7-4ddd-a4f0-b76335f9fa9c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren EENet --isp Telia --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "193.40.133.2", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.988160876, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "2023-08-23 11:21:59,674 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:21:59,674 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:21:59,674 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:21:59,674 - brian_sensu_utils.gws_direct - DEBUG - nren: EENet\n2023-08-23 11:21:59,674 - brian_sensu_utils.gws_direct - DEBUG - isp: Telia\n2023-08-23 11:21:59,675 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:21:59,678 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:21:59,706 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=EENet,isp=Telia,tag=a traffic_in=2840806635547922,traffic_out=281084854841809\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 2018, + "occurrences_watermark": 2018, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-EENet-Telia-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:193.40.133.2" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "193.40.133.2", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b4005985-eeb0-48f4-9ef0-d3a8380b8901", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren KIFU --isp Telia --tag b", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "195.111.97.108", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.479503642, + "executed": 1690550424, + "history": [ + { + "status": 2, + "executed": 1690544418 + }, + { + "status": 2, + "executed": 1690544718 + }, + { + "status": 2, + "executed": 1690545019 + }, + { + "status": 2, + "executed": 1690545319 + }, + { + "status": 2, + "executed": 1690545619 + }, + { + "status": 2, + "executed": 1690545919 + }, + { + "status": 2, + "executed": 1690546220 + }, + { + "status": 2, + "executed": 1690546520 + }, + { + "status": 2, + "executed": 1690546821 + }, + { + "status": 2, + "executed": 1690547121 + }, + { + "status": 2, + "executed": 1690547421 + }, + { + "status": 2, + "executed": 1690547721 + }, + { + "status": 2, + "executed": 1690548022 + }, + { + "status": 2, + "executed": 1690548322 + }, + { + "status": 2, + "executed": 1690548622 + }, + { + "status": 2, + "executed": 1690548923 + }, + { + "status": 2, + "executed": 1690549223 + }, + { + "status": 2, + "executed": 1690549523 + }, + { + "status": 2, + "executed": 1690549824 + }, + { + "status": 2, + "executed": 1690550124 + }, + { + "status": 2, + "executed": 1690550424 + } + ], + "issued": 1690550424, + "output": "2023-07-28 13:20:24,830 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-07-28 13:20:24,831 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-07-28 13:20:24,831 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-07-28 13:20:24,831 - brian_sensu_utils.gws_direct - DEBUG - nren: KIFU\n2023-07-28 13:20:24,831 - brian_sensu_utils.gws_direct - DEBUG - isp: Telia\n2023-07-28 13:20:24,831 - brian_sensu_utils.gws_direct - DEBUG - tag: b\n2023-07-28 13:20:24,834 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-07-28 13:20:24,852 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\n2023-07-28 13:20:24,927 - brian_sensu_utils.gws_direct - ERROR - Error fetching counter value:\nTraceback (most recent call last):\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/gws_direct.py\", line 64, in cli\n snmp_auth=c['snmp'])\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/snmp.py\", line 96, in get_counter_value\n raise ValueError(f'unable to extract counter from: {result}')\nValueError: unable to extract counter from: SNMPv2-SMI::mib-2.31.1.1.1.6.199 = No Such Instance currently exists at this OID\n\n2023-07-28 13:20:24,976 - brian_sensu_utils.gws_direct - ERROR - Error fetching counter value:\nTraceback (most recent call last):\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/gws_direct.py\", line 64, in cli\n snmp_auth=c['snmp'])\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/snmp.py\", line 96, in get_counter_value\n raise ValueError(f'unable to extract counter from: {result}')\nValueError: unable to extract counter from: SNMPv2-SMI::mib-2.31.1.1.1.10.199 = No Such Instance currently exists at this OID\n\n2023-07-28 13:20:24,977 - brian_sensu_utils.gws_direct - ERROR - no fields found\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 1690536311, + "occurrences": 47, + "occurrences_watermark": 47, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-KIFU-Telia-b", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:195.111.97.108" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "195.111.97.108", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "77b9a97f-3071-482f-b5c9-3710800142f3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 1407, + "timestamp": 1690550425 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren KIFU --isp Cogent --tag b", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "195.111.97.109", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.600381098, + "executed": 1692789460, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784055 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785256 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786157 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787358 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788860 + }, + { + "status": 0, + "executed": 1692789160 + }, + { + "status": 0, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "2023-08-23 11:17:40,688 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:40,688 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:40,688 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:40,688 - brian_sensu_utils.gws_direct - DEBUG - nren: KIFU\n2023-08-23 11:17:40,688 - brian_sensu_utils.gws_direct - DEBUG - isp: Cogent\n2023-08-23 11:17:40,688 - brian_sensu_utils.gws_direct - DEBUG - tag: b\n2023-08-23 11:17:40,692 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:40,712 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=KIFU,isp=Cogent,tag=b traffic_in=136675957860012,traffic_out=221190471519224\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789460, + "occurrences": 1447, + "occurrences_watermark": 1447, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-KIFU-Cogent-b", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:195.111.97.109" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "195.111.97.109", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "600fd393-8228-4300-b134-10229b6ad88e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789460 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren KIFU --isp Telia --tag b", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "195.111.97.110", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 3.237959362, + "executed": 1692789521, + "history": [ + { + "status": 0, + "executed": 1692783514 + }, + { + "status": 0, + "executed": 1692783814 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785015 + }, + { + "status": 0, + "executed": 1692785315 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787417 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788018 + }, + { + "status": 0, + "executed": 1692788318 + }, + { + "status": 0, + "executed": 1692788618 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789521 + } + ], + "issued": 1692789521, + "output": "2023-08-23 11:18:44,820 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:18:44,820 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:18:44,820 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:18:44,820 - brian_sensu_utils.gws_direct - DEBUG - nren: KIFU\n2023-08-23 11:18:44,821 - brian_sensu_utils.gws_direct - DEBUG - isp: Telia\n2023-08-23 11:18:44,821 - brian_sensu_utils.gws_direct - DEBUG - tag: b\n2023-08-23 11:18:44,829 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:18:44,871 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=KIFU,isp=Telia,tag=b traffic_in=1949096340747761,traffic_out=482093989099004\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789521, + "occurrences": 2031, + "occurrences_watermark": 2031, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-KIFU-Telia-b", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:195.111.97.110" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "195.111.97.110", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c0907acd-6760-466d-93ac-61acb934fa66", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren RoEduNet --isp CenturyLink --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "212.162.45.194", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 1.140889472, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "2023-08-23 11:17:41,699 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:41,700 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:41,700 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:41,700 - brian_sensu_utils.gws_direct - DEBUG - nren: RoEduNet\n2023-08-23 11:17:41,700 - brian_sensu_utils.gws_direct - DEBUG - isp: CenturyLink\n2023-08-23 11:17:41,700 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:17:41,703 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:41,721 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=RoEduNet,isp=CenturyLink,tag=a traffic_in=2185089580362471,traffic_out=860839398256492\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 1035, + "occurrences_watermark": 1035, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-RoEduNet-CenturyLink-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:212.162.45.194" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "212.162.45.194", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "26ef25ba-8d89-40a5-9150-524c09ab4185", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789462 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren PSNC --isp CenturyLink --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "212.191.126.6", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.621965696, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "2023-08-23 11:17:55,262 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:55,262 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:55,262 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:55,262 - brian_sensu_utils.gws_direct - DEBUG - nren: PSNC\n2023-08-23 11:17:55,262 - brian_sensu_utils.gws_direct - DEBUG - isp: CenturyLink\n2023-08-23 11:17:55,262 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:17:55,265 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:55,287 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=PSNC,isp=CenturyLink,tag=a traffic_in=44276819486400605,traffic_out=14546012335568579\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 3425, + "occurrences_watermark": 3425, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-PSNC-CenturyLink-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:212.191.126.6" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "212.191.126.6", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a8b34944-d2ea-442d-9351-e8ec5c523243", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren PSNC --isp CenturyLink --tag b", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "212.191.126.7", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.589392061, + "executed": 1692789460, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784055 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785256 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786157 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787358 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788860 + }, + { + "status": 0, + "executed": 1692789160 + }, + { + "status": 0, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "2023-08-23 11:17:40,677 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:40,677 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:40,677 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:40,677 - brian_sensu_utils.gws_direct - DEBUG - nren: PSNC\n2023-08-23 11:17:40,677 - brian_sensu_utils.gws_direct - DEBUG - isp: CenturyLink\n2023-08-23 11:17:40,677 - brian_sensu_utils.gws_direct - DEBUG - tag: b\n2023-08-23 11:17:40,682 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:40,707 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=PSNC,isp=CenturyLink,tag=b traffic_in=23322754170756,traffic_out=9705509206931\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789460, + "occurrences": 3425, + "occurrences_watermark": 3425, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-PSNC-CenturyLink-b", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:212.191.126.7" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "212.191.126.7", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4df0ddc2-d9e1-4f78-b44b-61f35f92a3b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789460 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren CARNET --isp Cogent --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "62.40.124.10", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.605477062, + "executed": 1692789452, + "history": [ + { + "status": 0, + "executed": 1692783447 + }, + { + "status": 0, + "executed": 1692783747 + }, + { + "status": 0, + "executed": 1692784048 + }, + { + "status": 0, + "executed": 1692784348 + }, + { + "status": 0, + "executed": 1692784648 + }, + { + "status": 0, + "executed": 1692784948 + }, + { + "status": 0, + "executed": 1692785249 + }, + { + "status": 0, + "executed": 1692785549 + }, + { + "status": 0, + "executed": 1692785849 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786450 + }, + { + "status": 0, + "executed": 1692786750 + }, + { + "status": 0, + "executed": 1692787050 + }, + { + "status": 0, + "executed": 1692787351 + }, + { + "status": 0, + "executed": 1692787651 + }, + { + "status": 0, + "executed": 1692787951 + }, + { + "status": 0, + "executed": 1692788251 + }, + { + "status": 0, + "executed": 1692788551 + }, + { + "status": 0, + "executed": 1692788852 + }, + { + "status": 0, + "executed": 1692789152 + }, + { + "status": 0, + "executed": 1692789452 + } + ], + "issued": 1692789452, + "output": "2023-08-23 11:17:32,610 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:32,610 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:32,610 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:32,610 - brian_sensu_utils.gws_direct - DEBUG - nren: CARNET\n2023-08-23 11:17:32,610 - brian_sensu_utils.gws_direct - DEBUG - isp: Cogent\n2023-08-23 11:17:32,610 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:17:32,613 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:32,631 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=CARNET,isp=Cogent,tag=a traffic_in=6608494340616128,traffic_out=3799942253379955\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789452, + "occurrences": 2032, + "occurrences_watermark": 2032, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-CARNET-Cogent-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:62.40.124.10" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "62.40.124.10", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6555151c-31f4-4ab6-bfd4-54b773ac17d9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789452 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren CARNET --isp CenturyLink --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "62.40.125.150", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.527804787, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "2023-08-23 11:17:31,575 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:31,575 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:31,575 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:31,575 - brian_sensu_utils.gws_direct - DEBUG - nren: CARNET\n2023-08-23 11:17:31,575 - brian_sensu_utils.gws_direct - DEBUG - isp: CenturyLink\n2023-08-23 11:17:31,575 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:17:31,579 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:31,596 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=CARNET,isp=CenturyLink,tag=a traffic_in=63809534384421,traffic_out=22265543477746\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 1263, + "occurrences_watermark": 1263, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-CARNET-CenturyLink-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:62.40.125.150" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "62.40.125.150", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc787a29-b20f-4a7c-ba84-b3997067a615", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren ARNES --isp Cogent --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "88.200.0.63", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.619278013, + "executed": 1692789472, + "history": [ + { + "status": 2, + "executed": 1692783467 + }, + { + "status": 2, + "executed": 1692783767 + }, + { + "status": 2, + "executed": 1692784067 + }, + { + "status": 2, + "executed": 1692784368 + }, + { + "status": 2, + "executed": 1692784668 + }, + { + "status": 2, + "executed": 1692784968 + }, + { + "status": 2, + "executed": 1692785268 + }, + { + "status": 2, + "executed": 1692785569 + }, + { + "status": 2, + "executed": 1692785869 + }, + { + "status": 2, + "executed": 1692786169 + }, + { + "status": 2, + "executed": 1692786470 + }, + { + "status": 2, + "executed": 1692786770 + }, + { + "status": 2, + "executed": 1692787070 + }, + { + "status": 2, + "executed": 1692787370 + }, + { + "status": 2, + "executed": 1692787671 + }, + { + "status": 2, + "executed": 1692787971 + }, + { + "status": 2, + "executed": 1692788271 + }, + { + "status": 2, + "executed": 1692788571 + }, + { + "status": 2, + "executed": 1692788872 + }, + { + "status": 2, + "executed": 1692789172 + }, + { + "status": 2, + "executed": 1692789472 + } + ], + "issued": 1692789471, + "output": "2023-08-23 11:17:52,604 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:52,604 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:52,604 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:52,604 - brian_sensu_utils.gws_direct - DEBUG - nren: ARNES\n2023-08-23 11:17:52,604 - brian_sensu_utils.gws_direct - DEBUG - isp: Cogent\n2023-08-23 11:17:52,604 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:17:52,607 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:52,623 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\n2023-08-23 11:17:52,705 - brian_sensu_utils.gws_direct - ERROR - Error fetching counter value:\nTraceback (most recent call last):\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/gws_direct.py\", line 64, in cli\n snmp_auth=c['snmp'])\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/snmp.py\", line 96, in get_counter_value\n raise ValueError(f'unable to extract counter from: {result}')\nValueError: unable to extract counter from: SNMPv2-SMI::mib-2.2.2.1.13.533 = No Such Instance currently exists at this OID\n\n2023-08-23 11:17:52,758 - brian_sensu_utils.gws_direct - ERROR - Error fetching counter value:\nTraceback (most recent call last):\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/gws_direct.py\", line 64, in cli\n snmp_auth=c['snmp'])\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/snmp.py\", line 96, in get_counter_value\n raise ValueError(f'unable to extract counter from: {result}')\nValueError: unable to extract counter from: SNMPv2-SMI::mib-2.2.2.1.19.533 = No Such Instance currently exists at this OID\n\n2023-08-23 11:17:52,823 - brian_sensu_utils.gws_direct - ERROR - Error fetching counter value:\nTraceback (most recent call last):\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/gws_direct.py\", line 64, in cli\n snmp_auth=c['snmp'])\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/snmp.py\", line 96, in get_counter_value\n raise ValueError(f'unable to extract counter from: {result}')\nValueError: unable to extract counter from: SNMPv2-SMI::mib-2.2.2.1.14.533 = No Such Instance currently exists at this OID\n\n2023-08-23 11:17:52,885 - brian_sensu_utils.gws_direct - ERROR - Error fetching counter value:\nTraceback (most recent call last):\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/gws_direct.py\", line 64, in cli\n snmp_auth=c['snmp'])\n File \"/home/brian_checks/venv/lib64/python3.6/site-packages/brian_sensu_utils/snmp.py\", line 96, in get_counter_value\n raise ValueError(f'unable to extract counter from: {result}')\nValueError: unable to extract counter from: SNMPv2-SMI::mib-2.2.2.1.20.533 = No Such Instance currently exists at this OID\n\n2023-08-23 11:17:52,885 - brian_sensu_utils.gws_direct - ERROR - no fields found\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 3425, + "occurrences_watermark": 13861, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-ARNES-Cogent-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:88.200.0.63" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "88.200.0.63", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c66d58e8-4bad-4d75-a901-674b7fe29b2c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789472 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren ARNES --isp Cogent --tag d", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "88.200.0.63", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.493881428, + "executed": 1692789470, + "history": [ + { + "status": 0, + "executed": 1692783465 + }, + { + "status": 0, + "executed": 1692783765 + }, + { + "status": 0, + "executed": 1692784066 + }, + { + "status": 0, + "executed": 1692784366 + }, + { + "status": 0, + "executed": 1692784666 + }, + { + "status": 0, + "executed": 1692784967 + }, + { + "status": 0, + "executed": 1692785267 + }, + { + "status": 0, + "executed": 1692785567 + }, + { + "status": 0, + "executed": 1692785867 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786468 + }, + { + "status": 0, + "executed": 1692786768 + }, + { + "status": 0, + "executed": 1692787068 + }, + { + "status": 0, + "executed": 1692787369 + }, + { + "status": 0, + "executed": 1692787669 + }, + { + "status": 0, + "executed": 1692787969 + }, + { + "status": 0, + "executed": 1692788270 + }, + { + "status": 0, + "executed": 1692788570 + }, + { + "status": 0, + "executed": 1692788870 + }, + { + "status": 0, + "executed": 1692789170 + }, + { + "status": 0, + "executed": 1692789470 + } + ], + "issued": 1692789470, + "output": "2023-08-23 11:17:51,098 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:51,098 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:51,098 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:51,098 - brian_sensu_utils.gws_direct - DEBUG - nren: ARNES\n2023-08-23 11:17:51,098 - brian_sensu_utils.gws_direct - DEBUG - isp: Cogent\n2023-08-23 11:17:51,098 - brian_sensu_utils.gws_direct - DEBUG - tag: d\n2023-08-23 11:17:51,101 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:51,119 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=ARNES,isp=Cogent,tag=d traffic_in=11067796781648447,traffic_out=1702377309696661\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789470, + "occurrences": 2031, + "occurrences_watermark": 2031, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-ARNES-Cogent-d", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:88.200.0.63" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "88.200.0.63", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ba86b149-37df-4e89-b25f-4bfa32011918", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789471 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren ARNES --isp Cogent --tag e", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "88.200.0.63", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.534141371, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "2023-08-23 11:21:59,663 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:21:59,663 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:21:59,663 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:21:59,663 - brian_sensu_utils.gws_direct - DEBUG - nren: ARNES\n2023-08-23 11:21:59,663 - brian_sensu_utils.gws_direct - DEBUG - isp: Cogent\n2023-08-23 11:21:59,663 - brian_sensu_utils.gws_direct - DEBUG - tag: e\n2023-08-23 11:21:59,667 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:21:59,684 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=ARNES,isp=Cogent,tag=e traffic_in=11067839018181090,traffic_out=1702387728925936\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 2032, + "occurrences_watermark": 2032, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-ARNES-Cogent-e", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:88.200.0.63" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "88.200.0.63", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6271a43e-2152-4575-9202-53e7b7142296", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren FCCN --isp Cogent --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "GT41.fccn.pt", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.582556117, + "executed": 1692789438, + "history": [ + { + "status": 0, + "executed": 1692783434 + }, + { + "status": 0, + "executed": 1692783734 + }, + { + "status": 0, + "executed": 1692784034 + }, + { + "status": 0, + "executed": 1692784334 + }, + { + "status": 0, + "executed": 1692784635 + }, + { + "status": 0, + "executed": 1692784935 + }, + { + "status": 0, + "executed": 1692785235 + }, + { + "status": 0, + "executed": 1692785535 + }, + { + "status": 0, + "executed": 1692785835 + }, + { + "status": 0, + "executed": 1692786135 + }, + { + "status": 0, + "executed": 1692786436 + }, + { + "status": 0, + "executed": 1692786736 + }, + { + "status": 0, + "executed": 1692787036 + }, + { + "status": 0, + "executed": 1692787337 + }, + { + "status": 0, + "executed": 1692787637 + }, + { + "status": 0, + "executed": 1692787937 + }, + { + "status": 0, + "executed": 1692788237 + }, + { + "status": 0, + "executed": 1692788537 + }, + { + "status": 0, + "executed": 1692788838 + }, + { + "status": 0, + "executed": 1692789138 + }, + { + "status": 0, + "executed": 1692789438 + } + ], + "issued": 1692789438, + "output": "2023-08-23 11:17:18,524 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:17:18,524 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:18,525 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:17:18,525 - brian_sensu_utils.gws_direct - DEBUG - nren: FCCN\n2023-08-23 11:17:18,525 - brian_sensu_utils.gws_direct - DEBUG - isp: Cogent\n2023-08-23 11:17:18,525 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:17:18,528 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:18,545 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=FCCN,isp=Cogent,tag=a traffic_in=9885908234,traffic_out=23274923302\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789438, + "occurrences": 2031, + "occurrences_watermark": 2031, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-FCCN-Cogent-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:GT41.fccn.pt" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "GT41.fccn.pt", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "559aae0b-f1f2-4409-bdfa-b8eac47cde84", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789438 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren HEANET --isp Cogent --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "core1-cwt.nn.hea.net", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.73326753, + "executed": 1692789493, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786491 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789493 + } + ], + "issued": 1692789493, + "output": "2023-08-23 11:18:14,166 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:18:14,166 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:18:14,166 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:18:14,167 - brian_sensu_utils.gws_direct - DEBUG - nren: HEANET\n2023-08-23 11:18:14,167 - brian_sensu_utils.gws_direct - DEBUG - isp: Cogent\n2023-08-23 11:18:14,167 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:18:14,170 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:18:14,187 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=HEANET,isp=Cogent,tag=a traffic_in=4420755349614312,traffic_out=2324423213723987\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789493, + "occurrences": 3425, + "occurrences_watermark": 3425, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-HEANET-Cogent-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:core1-cwt.nn.hea.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "core1-cwt.nn.hea.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "581ba612-64bd-491c-ac83-efede54e1711", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789494 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren HEANET --isp GTT --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "core1-pw.nn.hea.net", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.697782582, + "executed": 1692789512, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784108 + }, + { + "status": 0, + "executed": 1692784408 + }, + { + "status": 0, + "executed": 1692784708 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785609 + }, + { + "status": 0, + "executed": 1692785909 + }, + { + "status": 0, + "executed": 1692786210 + }, + { + "status": 0, + "executed": 1692786510 + }, + { + "status": 0, + "executed": 1692786810 + }, + { + "status": 0, + "executed": 1692787110 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787711 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788912 + }, + { + "status": 0, + "executed": 1692789212 + }, + { + "status": 0, + "executed": 1692789512 + } + ], + "issued": 1692789511, + "output": "2023-08-23 11:18:32,661 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:18:32,661 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:18:32,661 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:18:32,661 - brian_sensu_utils.gws_direct - DEBUG - nren: HEANET\n2023-08-23 11:18:32,661 - brian_sensu_utils.gws_direct - DEBUG - isp: GTT\n2023-08-23 11:18:32,661 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:18:32,664 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:18:32,686 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=HEANET,isp=GTT,tag=a traffic_in=387985304163363,traffic_out=151662435110331\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789512, + "occurrences": 2031, + "occurrences_watermark": 2031, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-HEANET-GTT-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:core1-pw.nn.hea.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "core1-pw.nn.hea.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c0544fbe-a310-4fac-82e3-144e5548b04e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789513 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/gws-direct --inventory http://localhost:18080 --measurement gwsd_counters --nren HEANET --isp CenturyLink --tag a", + "handlers": [], + "high_flap_threshold": 0, + "interval": 300, + "low_flap_threshold": 0, + "publish": true, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "core2-cwt.nn.hea.net", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.720569726, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "2023-08-23 11:18:01,095 - brian_sensu_utils.gws_direct - DEBUG - requesting gws direct counters, config params:\n2023-08-23 11:18:01,095 - brian_sensu_utils.gws_direct - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:18:01,095 - brian_sensu_utils.gws_direct - DEBUG - measurement: gwsd_counters\n2023-08-23 11:18:01,096 - brian_sensu_utils.gws_direct - DEBUG - nren: HEANET\n2023-08-23 11:18:01,096 - brian_sensu_utils.gws_direct - DEBUG - isp: CenturyLink\n2023-08-23 11:18:01,096 - brian_sensu_utils.gws_direct - DEBUG - tag: a\n2023-08-23 11:18:01,099 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:18:01,125 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/gws/direct HTTP/1.1\" 200 7532\ngwsd_counters,nren=HEANET,isp=CenturyLink,tag=a traffic_in=0,traffic_out=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 2031, + "occurrences_watermark": 2031, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "gwsd-HEANET-CenturyLink-a", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:core2-cwt.nn.hea.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "core2-cwt.nn.hea.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0ea33e3e-9206-4219-935b-b63670420372", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.ams.nl.geant.net", + "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, + "duration": 4.999074245, + "executed": 1692789455, + "history": [ + { + "status": 1, + "executed": 1692783450 + }, + { + "status": 1, + "executed": 1692783750 + }, + { + "status": 1, + "executed": 1692784051 + }, + { + "status": 1, + "executed": 1692784351 + }, + { + "status": 1, + "executed": 1692784651 + }, + { + "status": 1, + "executed": 1692784951 + }, + { + "status": 1, + "executed": 1692785252 + }, + { + "status": 1, + "executed": 1692785552 + }, + { + "status": 1, + "executed": 1692785852 + }, + { + "status": 1, + "executed": 1692786153 + }, + { + "status": 1, + "executed": 1692786453 + }, + { + "status": 1, + "executed": 1692786753 + }, + { + "status": 1, + "executed": 1692787053 + }, + { + "status": 1, + "executed": 1692787354 + }, + { + "status": 1, + "executed": 1692787654 + }, + { + "status": 1, + "executed": 1692787954 + }, + { + "status": 1, + "executed": 1692788254 + }, + { + "status": 1, + "executed": 1692788554 + }, + { + "status": 1, + "executed": 1692788855 + }, + { + "status": 1, + "executed": 1692789155 + }, + { + "status": 1, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "2023-08-23 11:17:35,563 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:35,563 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:35,563 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:35,563 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.ams.nl.geant.net\n2023-08-23 11:17:35,566 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:35,586 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.ams.nl.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.1 octets=640090918170\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.2 octets=375401962\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.8 octets=124995800049\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.9 octets=61873158113\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.10 octets=1778128100550\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.11 octets=908267953120\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.12 octets=839516505406\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.13 octets=3513151866984\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.14 octets=61182722919\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.15 octets=1765765713981\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.16 octets=1091364358764\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.17 octets=803510899650\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.18 octets=3498114779520\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.19 octets=1346065492669\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.20 octets=1853472947560\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.21 octets=1028617704487\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.23 octets=1488531334397\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.24 octets=4360778732610\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.25 octets=361746921906\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.27 octets=147960384399\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.28 octets=772624115290\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.29 octets=6359536362220\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.30 octets=9257150487336\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.32 octets=8539396270206\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.33 octets=7909583080105\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.34 octets=1022663240860\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.35 octets=4330147373897\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.36 octets=3377548171537\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.37 octets=18819535397064\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.38 octets=19106815475544\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.39 octets=2630185941214\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.40 octets=1334692379423\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.41 octets=1083237669715\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.42 octets=8479985923105\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.43 octets=26103760076885\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.44 octets=2426017633533\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.45 octets=18931247239476\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.46 octets=1518964035449\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.47 octets=2638210849147\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.48 octets=1334736793872\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.49 octets=1073679304569\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.50 octets=8577032113244\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.51 octets=26380756097215\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.52 octets=2453423542448\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.53 octets=13157776130401\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.54 octets=167066526576\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.55 octets=387036773555\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.56 octets=446071081825\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.57 octets=321892758796\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.58 octets=315689641977\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.59 octets=607705016423\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.61 octets=485695510801\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.62 octets=484314851802\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.63 octets=55772331631\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.64 octets=1811247379178\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.65 octets=59626682212\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.66 octets=10687103945\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.67 octets=2822802399994\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.68 octets=3070173155647\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.222.69 octets=1790247879615\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.223.1 octets=108665133470708\nmulticast,hostname=mx1.ams.nl.geant.net,subscription=232.223.223.22 octets=173943746974372\n2023-08-23 11:17:40,202 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.22,232.223.222.26,232.223.222.31,232.223.222.60,232.223.222.70,232.223.222.71,232.223.222.72\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.ams.nl.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aef706f7-45bd-49bd-ac3d-0afd45ecf9fc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789460 + }, + { + "check": { + "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, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "mx1.ams.nl.geant.net", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.642315492, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785595 + }, + { + "status": 0, + "executed": 1692785895 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae1 ingressOctets=93747716421266,egressOctets=202883599451065,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "337f9159-8f84-4d4f-9472-c3db03253035", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789500 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae1.0 1213", + "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, + "duration": 0.556114146, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae1.0 ingressOctets=93747100509260,egressOctets=202883181004755,ingressErrors=0,egressErrors=0,ingressOctetsv6=3969126679,egressOctetsv6=13208881395,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1714399d-7808-421f-a111-ae752bab3565", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae11 714", + "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, + "duration": 0.472546752, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae11 ingressOctets=4436051909087151,egressOctets=2081656442099828,ingressErrors=11,egressErrors=0,ingressDiscards=0,egressDiscards=3024024\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "81fb00d7-7bd4-440d-b953-7bd00c27920b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae11.0 823", + "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, + "duration": 0.491572587, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783475 + }, + { + "status": 0, + "executed": 1692783775 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae11.0 ingressOctets=4436051909081323,egressOctets=2081656423259107,ingressErrors=0,egressErrors=0,ingressOctetsv6=143608948406849,egressOctetsv6=116959690873837,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae11.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7b745c88-186d-4eba-b159-a054ea94474b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae12 717", + "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, + "duration": 0.49554787, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae12 ingressOctets=14857596768037664,egressOctets=2030246928650215,ingressErrors=9,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f904dc1-c91a-4cf5-a7b9-c508681784ba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae12.100 1143", + "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, + "duration": 0.541328227, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae12.100 ingressOctets=14857551875924606,egressOctets=2030234265356944,ingressErrors=0,egressErrors=0,ingressOctetsv6=251503461660490,egressOctetsv6=60246957794123,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae12.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1b929a55-efd6-4b59-bfc1-5a5abe44d5d2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae14 721", + "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, + "duration": 0.498470869, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae14 ingressOctets=3942503109672239,egressOctets=590762593334045,ingressErrors=39,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae14", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "14db65af-0ba6-4376-ae06-69b3c94eff08", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae14.600 1245", + "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, + "duration": 0.429713796, + "executed": 1692789511, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784108 + }, + { + "status": 0, + "executed": 1692784408 + }, + { + "status": 0, + "executed": 1692784708 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785609 + }, + { + "status": 0, + "executed": 1692785909 + }, + { + "status": 0, + "executed": 1692786209 + }, + { + "status": 0, + "executed": 1692786509 + }, + { + "status": 0, + "executed": 1692786810 + }, + { + "status": 0, + "executed": 1692787110 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787711 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788912 + }, + { + "status": 0, + "executed": 1692789212 + }, + { + "status": 0, + "executed": 1692789511 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae14.600 ingressOctets=3942452814984923,egressOctets=590755570943664,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789511, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae14.600", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eb3d3b59-d4b8-4a81-821f-40f149281e2d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789512 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15 722", + "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, + "duration": 0.465331881, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783490 + }, + { + "status": 0, + "executed": 1692783790 + }, + { + "status": 0, + "executed": 1692784091 + }, + { + "status": 0, + "executed": 1692784391 + }, + { + "status": 0, + "executed": 1692784691 + }, + { + "status": 0, + "executed": 1692784991 + }, + { + "status": 0, + "executed": 1692785291 + }, + { + "status": 0, + "executed": 1692785592 + }, + { + "status": 0, + "executed": 1692785892 + }, + { + "status": 0, + "executed": 1692786192 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786793 + }, + { + "status": 0, + "executed": 1692787093 + }, + { + "status": 0, + "executed": 1692787393 + }, + { + "status": 0, + "executed": 1692787694 + }, + { + "status": 0, + "executed": 1692787994 + }, + { + "status": 0, + "executed": 1692788294 + }, + { + "status": 0, + "executed": 1692788594 + }, + { + "status": 0, + "executed": 1692788895 + }, + { + "status": 0, + "executed": 1692789195 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789494, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15 ingressOctets=19895314548631536,egressOctets=37513860478908358,ingressErrors=6371,egressErrors=5,ingressDiscards=0,egressDiscards=80395313\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4880b012-7b86-4df3-bba1-eb9f49d7b2b6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.1103 1247", + "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, + "duration": 0.479280725, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786123 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.1103 ingressOctets=12457145507719447,egressOctets=17760448643658517,ingressErrors=0,egressErrors=0,ingressOctetsv6=4331990038594230,egressOctetsv6=5989808373665981,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.1103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a3f46c50-33d1-4604-8ef3-24ce50e1b580", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.111 1161", + "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, + "duration": 0.449555284, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.111 ingressOctets=7947698078,egressOctets=106469970765747,ingressErrors=0,egressErrors=0,ingressOctetsv6=7850142289,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "161f67e4-37e7-4765-9805-65921c337e53", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.1237 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, + "duration": 0.50217128, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.1237 ingressOctets=573690,egressOctets=195300987,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.1237", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e3cf4497-5c71-4611-b1ed-c707b18083e4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.1337 1327", + "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, + "duration": 0.459015035, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784346 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.1337 ingressOctets=22135598929,egressOctets=21028074698,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.1337", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6dffddb5-a7f4-4acc-ace2-f1829dd1e8d6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.1338 1326", + "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, + "duration": 0.521885905, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783426 + }, + { + "status": 0, + "executed": 1692783726 + }, + { + "status": 0, + "executed": 1692784026 + }, + { + "status": 0, + "executed": 1692784326 + }, + { + "status": 0, + "executed": 1692784627 + }, + { + "status": 0, + "executed": 1692784927 + }, + { + "status": 0, + "executed": 1692785227 + }, + { + "status": 0, + "executed": 1692785527 + }, + { + "status": 0, + "executed": 1692785827 + }, + { + "status": 0, + "executed": 1692786128 + }, + { + "status": 0, + "executed": 1692786428 + }, + { + "status": 0, + "executed": 1692786728 + }, + { + "status": 0, + "executed": 1692787028 + }, + { + "status": 0, + "executed": 1692787329 + }, + { + "status": 0, + "executed": 1692787629 + }, + { + "status": 0, + "executed": 1692787929 + }, + { + "status": 0, + "executed": 1692788229 + }, + { + "status": 0, + "executed": 1692788529 + }, + { + "status": 0, + "executed": 1692788830 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.1338 ingressOctets=48213287875,egressOctets=38458168553,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.1338", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7869d35d-acb3-4a62-8d5a-58a1458d0a81", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.1500 766", + "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, + "duration": 0.449383511, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.1500 ingressOctets=37262703968,egressOctets=279240447073215,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.1500", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "659f70ea-cf1a-46a1-9f9a-646d379962f0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.2009 1195", + "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, + "duration": 0.445313473, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.2009 ingressOctets=66811911292,egressOctets=4386483899485999,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.2009", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d0b08910-3532-445f-901e-54eef583fae7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.2281 1197", + "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, + "duration": 0.465413446, + "executed": 1692789427, + "history": [ + { + "status": 0, + "executed": 1692783423 + }, + { + "status": 0, + "executed": 1692783723 + }, + { + "status": 0, + "executed": 1692784023 + }, + { + "status": 0, + "executed": 1692784323 + }, + { + "status": 0, + "executed": 1692784624 + }, + { + "status": 0, + "executed": 1692784924 + }, + { + "status": 0, + "executed": 1692785224 + }, + { + "status": 0, + "executed": 1692785524 + }, + { + "status": 0, + "executed": 1692785824 + }, + { + "status": 0, + "executed": 1692786125 + }, + { + "status": 0, + "executed": 1692786425 + }, + { + "status": 0, + "executed": 1692786725 + }, + { + "status": 0, + "executed": 1692787025 + }, + { + "status": 0, + "executed": 1692787326 + }, + { + "status": 0, + "executed": 1692787626 + }, + { + "status": 0, + "executed": 1692787926 + }, + { + "status": 0, + "executed": 1692788226 + }, + { + "status": 0, + "executed": 1692788526 + }, + { + "status": 0, + "executed": 1692788827 + }, + { + "status": 0, + "executed": 1692789127 + }, + { + "status": 0, + "executed": 1692789427 + } + ], + "issued": 1692789427, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.2281 ingressOctets=33686478682462,egressOctets=4314562730679491,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789427, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.2281", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c4dd22d9-ceb3-4e72-bd2b-779812cec176", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789428 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.3003 1210", + "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, + "duration": 0.452392582, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.3003 ingressOctets=2165631230,egressOctets=66323729668138,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.3003", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b95ee73e-3179-471c-81f3-213a50b25414", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789479 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.3004 1214", + "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, + "duration": 0.420937814, + "executed": 1692789457, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784053 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785254 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787356 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787957 + }, + { + "status": 0, + "executed": 1692788257 + }, + { + "status": 0, + "executed": 1692788557 + }, + { + "status": 0, + "executed": 1692788857 + }, + { + "status": 0, + "executed": 1692789157 + }, + { + "status": 0, + "executed": 1692789457 + } + ], + "issued": 1692789457, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.3004 ingressOctets=88083565200,egressOctets=551528901171295,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789457, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.3004", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b1d5d7d5-993e-4f18-80d7-2fa6be191e16", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789458 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.333 801", + "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, + "duration": 0.4713358, + "executed": 1692789459, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784055 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785256 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786157 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787358 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788859 + }, + { + "status": 0, + "executed": 1692789159 + }, + { + "status": 0, + "executed": 1692789459 + } + ], + "issued": 1692789459, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.333 ingressOctets=316672691645504,egressOctets=52092611420686,ingressErrors=0,egressErrors=0,ingressOctetsv6=53813356399273,egressOctetsv6=4383218743637,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789459, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d5cad5d5-c218-45e1-a0c2-7cab8f0c35dd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789460 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.34 1462", + "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, + "duration": 0.467650939, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.34 ingressOctets=578259073867,egressOctets=715748308848,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.34", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "72821816-ce04-422b-a15a-dfe96855659e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.40 1463", + "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, + "duration": 0.491387967, + "executed": 1692789442, + "history": [ + { + "status": 0, + "executed": 1692783437 + }, + { + "status": 0, + "executed": 1692783737 + }, + { + "status": 0, + "executed": 1692784038 + }, + { + "status": 0, + "executed": 1692784338 + }, + { + "status": 0, + "executed": 1692784638 + }, + { + "status": 0, + "executed": 1692784939 + }, + { + "status": 0, + "executed": 1692785239 + }, + { + "status": 0, + "executed": 1692785539 + }, + { + "status": 0, + "executed": 1692785839 + }, + { + "status": 0, + "executed": 1692786139 + }, + { + "status": 0, + "executed": 1692786440 + }, + { + "status": 0, + "executed": 1692786740 + }, + { + "status": 0, + "executed": 1692787040 + }, + { + "status": 0, + "executed": 1692787341 + }, + { + "status": 0, + "executed": 1692787641 + }, + { + "status": 0, + "executed": 1692787941 + }, + { + "status": 0, + "executed": 1692788241 + }, + { + "status": 0, + "executed": 1692788541 + }, + { + "status": 0, + "executed": 1692788842 + }, + { + "status": 0, + "executed": 1692789142 + }, + { + "status": 0, + "executed": 1692789442 + } + ], + "issued": 1692789442, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.40 ingressOctets=563404453940,egressOctets=695634001135,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789442, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.40", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "643a56a7-38aa-4098-9cfb-e69c6922ff49", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789442 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.666 1394", + "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, + "duration": 0.476673883, + "executed": 1692789498, + "history": [ + { + "status": 0, + "executed": 1692783493 + }, + { + "status": 0, + "executed": 1692783793 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784994 + }, + { + "status": 0, + "executed": 1692785294 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787096 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787697 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788898 + }, + { + "status": 0, + "executed": 1692789198 + }, + { + "status": 0, + "executed": 1692789498 + } + ], + "issued": 1692789498, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.666 ingressOctets=5777224915809664,egressOctets=7711520074529578,ingressErrors=0,egressErrors=0,ingressOctetsv6=5235771194891783,egressOctetsv6=6277869476704051,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789498, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.666", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e6c34b82-e460-48f7-aea9-1ba6f9848db5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789498 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.673 657", + "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, + "duration": 0.447584448, + "executed": 1692789472, + "history": [ + { + "status": 0, + "executed": 1692783467 + }, + { + "status": 0, + "executed": 1692783767 + }, + { + "status": 0, + "executed": 1692784067 + }, + { + "status": 0, + "executed": 1692784368 + }, + { + "status": 0, + "executed": 1692784668 + }, + { + "status": 0, + "executed": 1692784968 + }, + { + "status": 0, + "executed": 1692785268 + }, + { + "status": 0, + "executed": 1692785569 + }, + { + "status": 0, + "executed": 1692785869 + }, + { + "status": 0, + "executed": 1692786169 + }, + { + "status": 0, + "executed": 1692786470 + }, + { + "status": 0, + "executed": 1692786770 + }, + { + "status": 0, + "executed": 1692787070 + }, + { + "status": 0, + "executed": 1692787370 + }, + { + "status": 0, + "executed": 1692787671 + }, + { + "status": 0, + "executed": 1692787971 + }, + { + "status": 0, + "executed": 1692788271 + }, + { + "status": 0, + "executed": 1692788571 + }, + { + "status": 0, + "executed": 1692788872 + }, + { + "status": 0, + "executed": 1692789172 + }, + { + "status": 0, + "executed": 1692789472 + } + ], + "issued": 1692789471, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.673 ingressOctets=1302619600393576,egressOctets=2283663487356758,ingressErrors=0,egressErrors=0,ingressOctetsv6=230964838209449,egressOctetsv6=2764622673,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789472, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.673", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dee25be2-7811-4650-a235-ea39002de8c7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789472 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae15.701 1137", + "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, + "duration": 0.507356402, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786447 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae15.701 ingressOctets=4722930,egressOctets=64726489,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae15.701", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "75823914-34dd-49b2-8cb2-3db24f1c9813", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae16 723", + "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, + "duration": 0.566422239, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae16 ingressOctets=8816667706249956,egressOctets=9077410640971878,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=5960793\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "84a0cc3b-9c7b-410d-b587-391b0f084eb9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae16.100 996", + "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, + "duration": 0.396171825, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae16.100 ingressOctets=8816697286425269,egressOctets=9077427704349161,ingressErrors=0,egressErrors=0,ingressOctetsv6=5210838986692785,egressOctetsv6=3738031802697640,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae16.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c82fcf2b-da7f-41ab-9401-db5fe4aa8fa4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae16.111 995", + "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, + "duration": 0.464811888, + "executed": 1692789490, + "history": [ + { + "status": 0, + "executed": 1692783485 + }, + { + "status": 0, + "executed": 1692783785 + }, + { + "status": 0, + "executed": 1692784086 + }, + { + "status": 0, + "executed": 1692784386 + }, + { + "status": 0, + "executed": 1692784686 + }, + { + "status": 0, + "executed": 1692784986 + }, + { + "status": 0, + "executed": 1692785286 + }, + { + "status": 0, + "executed": 1692785587 + }, + { + "status": 0, + "executed": 1692785887 + }, + { + "status": 0, + "executed": 1692786187 + }, + { + "status": 0, + "executed": 1692786488 + }, + { + "status": 0, + "executed": 1692786788 + }, + { + "status": 0, + "executed": 1692787088 + }, + { + "status": 0, + "executed": 1692787388 + }, + { + "status": 0, + "executed": 1692787689 + }, + { + "status": 0, + "executed": 1692787989 + }, + { + "status": 0, + "executed": 1692788289 + }, + { + "status": 0, + "executed": 1692788589 + }, + { + "status": 0, + "executed": 1692788890 + }, + { + "status": 0, + "executed": 1692789190 + }, + { + "status": 0, + "executed": 1692789490 + } + ], + "issued": 1692789489, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae16.111 ingressOctets=253761017,egressOctets=302163043,ingressErrors=0,egressErrors=0,ingressOctetsv6=140076404,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789490, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae16.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3a535fb2-3e58-4d3f-b7fd-f7feeb36512a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789490 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae17 724", + "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, + "duration": 0.436334315, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784346 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae17 ingressOctets=286293751069276,egressOctets=42218013375265,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae17", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3038e48b-7bbe-4720-aea6-5c5be4b96163", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae17.100 1038", + "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, + "duration": 0.507510418, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783518 + }, + { + "status": 0, + "executed": 1692783818 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785019 + }, + { + "status": 0, + "executed": 1692785319 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787421 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788022 + }, + { + "status": 0, + "executed": 1692788322 + }, + { + "status": 0, + "executed": 1692788622 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae17.100 ingressOctets=243250945954259,egressOctets=18556891958429,ingressErrors=0,egressErrors=0,ingressOctetsv6=112185398769,egressOctetsv6=134979610244,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae17.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "25e18d0b-dadf-40e2-ace8-7842732793d3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae17.402 1050", + "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, + "duration": 0.523579094, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785595 + }, + { + "status": 0, + "executed": 1692785895 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae17.402 ingressOctets=171704478208,egressOctets=323739878,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae17.402", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6b8d79c6-32a9-4d8d-8290-eec279d7c678", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789500 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae17.802 1114", + "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, + "duration": 0.420598974, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783477 + }, + { + "status": 0, + "executed": 1692783777 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784378 + }, + { + "status": 0, + "executed": 1692784678 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785579 + }, + { + "status": 0, + "executed": 1692785879 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786780 + }, + { + "status": 0, + "executed": 1692787080 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787681 + }, + { + "status": 0, + "executed": 1692787981 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788882 + }, + { + "status": 0, + "executed": 1692789182 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae17.802 ingressOctets=42868874263374,egressOctets=23660895453233,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae17.802", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "25c97060-c455-4a51-8c44-e5e037e05934", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae2 630", + "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, + "duration": 0.490086269, + "executed": 1692789460, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784055 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785256 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786157 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787358 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788860 + }, + { + "status": 0, + "executed": 1692789160 + }, + { + "status": 0, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae2 ingressOctets=2664358025188,egressOctets=580848676494665,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789460, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "79843877-3dfd-4a9f-bc63-9c411d8fa6e2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789460 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae2.103 1163", + "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, + "duration": 0.458048577, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783460 + }, + { + "status": 0, + "executed": 1692783760 + }, + { + "status": 0, + "executed": 1692784060 + }, + { + "status": 0, + "executed": 1692784361 + }, + { + "status": 0, + "executed": 1692784661 + }, + { + "status": 0, + "executed": 1692784961 + }, + { + "status": 0, + "executed": 1692785261 + }, + { + "status": 0, + "executed": 1692785562 + }, + { + "status": 0, + "executed": 1692785862 + }, + { + "status": 0, + "executed": 1692786162 + }, + { + "status": 0, + "executed": 1692786463 + }, + { + "status": 0, + "executed": 1692786763 + }, + { + "status": 0, + "executed": 1692787063 + }, + { + "status": 0, + "executed": 1692787363 + }, + { + "status": 0, + "executed": 1692787664 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788265 + }, + { + "status": 0, + "executed": 1692788565 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789465, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae2.103 ingressOctets=488557375515,egressOctets=9609213661,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae2.103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "92e4c569-bc7c-4e95-948e-8d3d6235deaa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789466 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae2.107 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, + "duration": 0.51100118, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783451 + }, + { + "status": 0, + "executed": 1692783751 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784352 + }, + { + "status": 0, + "executed": 1692784652 + }, + { + "status": 0, + "executed": 1692784952 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785553 + }, + { + "status": 0, + "executed": 1692785853 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786754 + }, + { + "status": 0, + "executed": 1692787054 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787655 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae2.107 ingressOctets=2142663825507,egressOctets=2606249390846,ingressErrors=0,egressErrors=0,ingressOctetsv6=123518514,egressOctetsv6=28916802,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae2.107", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "295b18cf-aea2-43ed-96f0-4fc251ad2261", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae2.108 1342", + "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, + "duration": 0.449239454, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae2.108 ingressOctets=19406772758,egressOctets=578228717319071,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae2.108", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "857e87cc-6343-4d9c-bd7a-c6a8d86797ac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae2.998 1164", + "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, + "duration": 0.471005872, + "executed": 1692789712, + "history": [ + { + "status": 0, + "executed": 1692783709 + }, + { + "status": 0, + "executed": 1692784009 + }, + { + "status": 0, + "executed": 1692784309 + }, + { + "status": 0, + "executed": 1692784609 + }, + { + "status": 0, + "executed": 1692784909 + }, + { + "status": 0, + "executed": 1692785209 + }, + { + "status": 0, + "executed": 1692785509 + }, + { + "status": 0, + "executed": 1692785810 + }, + { + "status": 0, + "executed": 1692786110 + }, + { + "status": 0, + "executed": 1692786411 + }, + { + "status": 0, + "executed": 1692786711 + }, + { + "status": 0, + "executed": 1692787011 + }, + { + "status": 0, + "executed": 1692787311 + }, + { + "status": 0, + "executed": 1692787611 + }, + { + "status": 0, + "executed": 1692787911 + }, + { + "status": 0, + "executed": 1692788212 + }, + { + "status": 0, + "executed": 1692788512 + }, + { + "status": 0, + "executed": 1692788812 + }, + { + "status": 0, + "executed": 1692789112 + }, + { + "status": 0, + "executed": 1692789412 + }, + { + "status": 0, + "executed": 1692789712 + } + ], + "issued": 1692789712, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae2.998 ingressOctets=8168369818,egressOctets=3342513403,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789712, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae2.998", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e2056593-068b-4e27-ac19-3e16d0b4227a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789713 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20 727", + "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, + "duration": 0.523299061, + "executed": 1692789424, + "history": [ + { + "status": 0, + "executed": 1692783420 + }, + { + "status": 0, + "executed": 1692783720 + }, + { + "status": 0, + "executed": 1692784020 + }, + { + "status": 0, + "executed": 1692784320 + }, + { + "status": 0, + "executed": 1692784620 + }, + { + "status": 0, + "executed": 1692784920 + }, + { + "status": 0, + "executed": 1692785220 + }, + { + "status": 0, + "executed": 1692785520 + }, + { + "status": 0, + "executed": 1692785821 + }, + { + "status": 0, + "executed": 1692786121 + }, + { + "status": 0, + "executed": 1692786421 + }, + { + "status": 0, + "executed": 1692786722 + }, + { + "status": 0, + "executed": 1692787022 + }, + { + "status": 0, + "executed": 1692787322 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787923 + }, + { + "status": 0, + "executed": 1692788223 + }, + { + "status": 0, + "executed": 1692788523 + }, + { + "status": 0, + "executed": 1692788823 + }, + { + "status": 0, + "executed": 1692789124 + }, + { + "status": 0, + "executed": 1692789424 + } + ], + "issued": 1692789424, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae20 ingressOctets=13112573499657323,egressOctets=22738982045974656,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789424, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae20", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d0fa06aa-c318-45c7-8133-c6f1105c96d6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789424 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.100 1407", + "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, + "duration": 0.448913796, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786447 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae20.100 ingressOctets=5210716489942388,egressOctets=10651269388684587,ingressErrors=0,egressErrors=0,ingressOctetsv6=2899001839683271,egressOctetsv6=5229497730919008,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae20.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bfcb83b0-f03a-4a0f-a159-3307a816ecc0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.200 1406", + "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, + "duration": 0.459233152, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783472 + }, + { + "status": 0, + "executed": 1692783772 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786176 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae20.200 ingressOctets=7901689817128269,egressOctets=12086708807790543,ingressErrors=0,egressErrors=0,ingressOctetsv6=7202351519045267,egressOctetsv6=10930112526953647,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae20.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e09a7dd3-7654-4f50-9d02-313f41214c86", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.2260 989", + "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, + "duration": 0.437115517, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784068 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784969 + }, + { + "status": 0, + "executed": 1692785269 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787371 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787972 + }, + { + "status": 0, + "executed": 1692788272 + }, + { + "status": 0, + "executed": 1692788572 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789472, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae20.2260 ingressOctets=110728720844,egressOctets=97450940166,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae20.2260", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "26654df7-f5d7-41fa-ac3a-213ded724382", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789473 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.2265 925", + "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, + "duration": 0.487954324, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788261 + }, + { + "status": 0, + "executed": 1692788561 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae20.2265 ingressOctets=8866816322,egressOctets=10474371948,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae20.2265", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "08d36580-b0b4-4ddd-b3d0-26b42f2e026f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789462 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.3019 1479", + "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, + "duration": 0.466214576, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787972 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae20.3019 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae20.3019", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9072b3f0-6ed0-4032-9cd7-c4d174d38066", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.3020 1478", + "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, + "duration": 0.463940612, + "executed": 1692789436, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784633 + }, + { + "status": 0, + "executed": 1692784933 + }, + { + "status": 0, + "executed": 1692785233 + }, + { + "status": 0, + "executed": 1692785533 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786134 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787335 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788836 + }, + { + "status": 0, + "executed": 1692789136 + }, + { + "status": 0, + "executed": 1692789436 + } + ], + "issued": 1692789436, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae20.3020 ingressOctets=79196926,egressOctets=1470995946,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789436, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae20.3020", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3a667515-e2e1-45b7-aae8-701c4dcd0b36", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.3153 1467", + "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, + "duration": 0.52393493, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786123 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae20.3153 ingressOctets=13361086868,egressOctets=7102768246,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae20.3153", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3e52cfb8-71d8-4297-889f-45534c9ed521", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae20.990 1491", + "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, + "duration": 0.591955696, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae20.990 ingressOctets=38953170158,egressOctets=909705717926,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae20.990", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e32e3c16-a339-44cf-83f3-9134f25b589c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789488 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21 728", + "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, + "duration": 0.468809223, + "executed": 1692789452, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784048 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785249 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787351 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788852 + }, + { + "status": 0, + "executed": 1692789152 + }, + { + "status": 0, + "executed": 1692789452 + } + ], + "issued": 1692789452, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21 ingressOctets=174337454220546,egressOctets=441474224264814,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789452, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "06c0a99a-86e6-46a9-8fe5-264490731509", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.10 1020", + "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, + "duration": 0.39708542, + "executed": 1692789508, + "history": [ + { + "status": 0, + "executed": 1692783504 + }, + { + "status": 0, + "executed": 1692783804 + }, + { + "status": 0, + "executed": 1692784104 + }, + { + "status": 0, + "executed": 1692784404 + }, + { + "status": 0, + "executed": 1692784704 + }, + { + "status": 0, + "executed": 1692785005 + }, + { + "status": 0, + "executed": 1692785305 + }, + { + "status": 0, + "executed": 1692785605 + }, + { + "status": 0, + "executed": 1692785905 + }, + { + "status": 0, + "executed": 1692786206 + }, + { + "status": 0, + "executed": 1692786506 + }, + { + "status": 0, + "executed": 1692786806 + }, + { + "status": 0, + "executed": 1692787106 + }, + { + "status": 0, + "executed": 1692787406 + }, + { + "status": 0, + "executed": 1692787707 + }, + { + "status": 0, + "executed": 1692788007 + }, + { + "status": 0, + "executed": 1692788307 + }, + { + "status": 0, + "executed": 1692788607 + }, + { + "status": 0, + "executed": 1692788908 + }, + { + "status": 0, + "executed": 1692789208 + }, + { + "status": 0, + "executed": 1692789508 + } + ], + "issued": 1692789507, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.10 ingressOctets=16329203467759,egressOctets=174493007144,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789508, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "92197d2b-40d6-414f-98ea-407eed12cb75", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789508 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.11 1087", + "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, + "duration": 0.437780614, + "executed": 1692789512, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784108 + }, + { + "status": 0, + "executed": 1692784408 + }, + { + "status": 0, + "executed": 1692784708 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785609 + }, + { + "status": 0, + "executed": 1692785909 + }, + { + "status": 0, + "executed": 1692786210 + }, + { + "status": 0, + "executed": 1692786510 + }, + { + "status": 0, + "executed": 1692786810 + }, + { + "status": 0, + "executed": 1692787110 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787711 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788912 + }, + { + "status": 0, + "executed": 1692789212 + }, + { + "status": 0, + "executed": 1692789512 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.11 ingressOctets=1335927291704,egressOctets=1338744317468,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789512, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c7716b2c-ef67-48c9-a1ec-147a5807cf85", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789512 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.12 1159", + "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, + "duration": 0.457461797, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.12 ingressOctets=82031937277,egressOctets=615360708,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2d27c408-07a1-4126-b704-5e81de8e6a65", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.13 1078", + "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, + "duration": 0.607622925, + "executed": 1692789434, + "history": [ + { + "status": 0, + "executed": 1692783430 + }, + { + "status": 0, + "executed": 1692783730 + }, + { + "status": 0, + "executed": 1692784030 + }, + { + "status": 0, + "executed": 1692784330 + }, + { + "status": 0, + "executed": 1692784631 + }, + { + "status": 0, + "executed": 1692784931 + }, + { + "status": 0, + "executed": 1692785231 + }, + { + "status": 0, + "executed": 1692785531 + }, + { + "status": 0, + "executed": 1692785831 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786432 + }, + { + "status": 0, + "executed": 1692786732 + }, + { + "status": 0, + "executed": 1692787032 + }, + { + "status": 0, + "executed": 1692787333 + }, + { + "status": 0, + "executed": 1692787633 + }, + { + "status": 0, + "executed": 1692787933 + }, + { + "status": 0, + "executed": 1692788233 + }, + { + "status": 0, + "executed": 1692788533 + }, + { + "status": 0, + "executed": 1692788834 + }, + { + "status": 0, + "executed": 1692789134 + }, + { + "status": 0, + "executed": 1692789434 + } + ], + "issued": 1692789434, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.13 ingressOctets=6135117676,egressOctets=9443298518,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789434, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "58f6c971-5204-4f3c-ac9d-96bf6b521bca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.14 1180", + "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, + "duration": 0.415004742, + "executed": 1692789710, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789710 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.14 ingressOctets=116268339093,egressOctets=2932291618157,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789710, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.14", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b02cf00a-7cc4-4611-98b4-5db6963e2bf7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.15 1316", + "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, + "duration": 0.466542528, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.15 ingressOctets=29516400,egressOctets=2460,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.15", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "755f79f2-6e9f-4d72-b2ff-bd4cd58d55ca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789473 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.17 814", + "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, + "duration": 0.428007097, + "executed": 1692789499, + "history": [ + { + "status": 0, + "executed": 1692783493 + }, + { + "status": 0, + "executed": 1692783793 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784994 + }, + { + "status": 0, + "executed": 1692785294 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787096 + }, + { + "status": 0, + "executed": 1692787397 + }, + { + "status": 0, + "executed": 1692787697 + }, + { + "status": 0, + "executed": 1692787998 + }, + { + "status": 0, + "executed": 1692788298 + }, + { + "status": 0, + "executed": 1692788598 + }, + { + "status": 0, + "executed": 1692788898 + }, + { + "status": 0, + "executed": 1692789199 + }, + { + "status": 0, + "executed": 1692789499 + } + ], + "issued": 1692789498, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.17 ingressOctets=23369674806335,egressOctets=42245371599454,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789499, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.17", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b1bfe89b-1277-443e-a39d-6d1c04465dcf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789499 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.18 1454", + "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, + "duration": 0.533645894, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783428 + }, + { + "status": 0, + "executed": 1692783728 + }, + { + "status": 0, + "executed": 1692784028 + }, + { + "status": 0, + "executed": 1692784328 + }, + { + "status": 0, + "executed": 1692784629 + }, + { + "status": 0, + "executed": 1692784929 + }, + { + "status": 0, + "executed": 1692785229 + }, + { + "status": 0, + "executed": 1692785529 + }, + { + "status": 0, + "executed": 1692785829 + }, + { + "status": 0, + "executed": 1692786130 + }, + { + "status": 0, + "executed": 1692786430 + }, + { + "status": 0, + "executed": 1692786730 + }, + { + "status": 0, + "executed": 1692787030 + }, + { + "status": 0, + "executed": 1692787331 + }, + { + "status": 0, + "executed": 1692787631 + }, + { + "status": 0, + "executed": 1692787931 + }, + { + "status": 0, + "executed": 1692788231 + }, + { + "status": 0, + "executed": 1692788531 + }, + { + "status": 0, + "executed": 1692788832 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.18 ingressOctets=873748148229,egressOctets=30883232238,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.18", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "047c004e-18b1-4794-b9e9-520d3fad6120", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.19 1483", + "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, + "duration": 0.407747123, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.19 ingressOctets=54688902039,egressOctets=77457654382,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.19", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "15fc38c5-d24b-4c46-95f4-305014cd8b38", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.2 980", + "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, + "duration": 0.475623295, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783451 + }, + { + "status": 0, + "executed": 1692783751 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784352 + }, + { + "status": 0, + "executed": 1692784652 + }, + { + "status": 0, + "executed": 1692784952 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785553 + }, + { + "status": 0, + "executed": 1692785853 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786754 + }, + { + "status": 0, + "executed": 1692787054 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787655 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.2 ingressOctets=4075920446100,egressOctets=953399977453,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "16ca59be-f588-4aae-84d3-de198e95c0de", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.20 930", + "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, + "duration": 0.479528678, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.20 ingressOctets=1963848275898,egressOctets=1180364740303,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.20", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7f4c7af4-4e5c-4fef-ad7e-701f97f33cd2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.21 969", + "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, + "duration": 0.442353454, + "executed": 1692789457, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784053 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785254 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787356 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787957 + }, + { + "status": 0, + "executed": 1692788257 + }, + { + "status": 0, + "executed": 1692788557 + }, + { + "status": 0, + "executed": 1692788857 + }, + { + "status": 0, + "executed": 1692789157 + }, + { + "status": 0, + "executed": 1692789457 + } + ], + "issued": 1692789457, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.21 ingressOctets=9486119024479,egressOctets=1721827427965,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789457, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "38b74019-ffa6-4f17-ab99-285e584d3f81", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789458 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.22 978", + "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, + "duration": 0.446270302, + "executed": 1692789445, + "history": [ + { + "status": 0, + "executed": 1692783441 + }, + { + "status": 0, + "executed": 1692783741 + }, + { + "status": 0, + "executed": 1692784041 + }, + { + "status": 0, + "executed": 1692784341 + }, + { + "status": 0, + "executed": 1692784642 + }, + { + "status": 0, + "executed": 1692784942 + }, + { + "status": 0, + "executed": 1692785242 + }, + { + "status": 0, + "executed": 1692785542 + }, + { + "status": 0, + "executed": 1692785843 + }, + { + "status": 0, + "executed": 1692786143 + }, + { + "status": 0, + "executed": 1692786444 + }, + { + "status": 0, + "executed": 1692786744 + }, + { + "status": 0, + "executed": 1692787044 + }, + { + "status": 0, + "executed": 1692787344 + }, + { + "status": 0, + "executed": 1692787645 + }, + { + "status": 0, + "executed": 1692787945 + }, + { + "status": 0, + "executed": 1692788245 + }, + { + "status": 0, + "executed": 1692788545 + }, + { + "status": 0, + "executed": 1692788845 + }, + { + "status": 0, + "executed": 1692789145 + }, + { + "status": 0, + "executed": 1692789445 + } + ], + "issued": 1692789445, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.22 ingressOctets=9915009859,egressOctets=33021151907,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789445, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "11f668e1-2ac8-4018-9052-de246bc6d4f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789446 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.23 1018", + "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, + "duration": 0.424382582, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.23 ingressOctets=1524193642920,egressOctets=22046954827159,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "82125350-2383-4401-bcec-f86ae6565faf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.24 1042", + "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, + "duration": 0.434141214, + "executed": 1692789506, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789506 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.24 ingressOctets=13965562535,egressOctets=911841057055,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789506, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.24", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1b8164b5-a361-49c0-bf7c-ab527558b019", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.25 1177", + "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, + "duration": 0.460590964, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783460 + }, + { + "status": 0, + "executed": 1692783760 + }, + { + "status": 0, + "executed": 1692784060 + }, + { + "status": 0, + "executed": 1692784361 + }, + { + "status": 0, + "executed": 1692784661 + }, + { + "status": 0, + "executed": 1692784961 + }, + { + "status": 0, + "executed": 1692785261 + }, + { + "status": 0, + "executed": 1692785562 + }, + { + "status": 0, + "executed": 1692785862 + }, + { + "status": 0, + "executed": 1692786162 + }, + { + "status": 0, + "executed": 1692786463 + }, + { + "status": 0, + "executed": 1692786763 + }, + { + "status": 0, + "executed": 1692787063 + }, + { + "status": 0, + "executed": 1692787363 + }, + { + "status": 0, + "executed": 1692787664 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788265 + }, + { + "status": 0, + "executed": 1692788565 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789465, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.25 ingressOctets=884283449,egressOctets=154263847,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6dbb3757-3b20-4e2d-8609-42f70d9e8d97", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789466 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.26 1313", + "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, + "duration": 0.476211856, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783472 + }, + { + "status": 0, + "executed": 1692783772 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786176 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.26 ingressOctets=0,egressOctets=310645898,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 28615, + "occurrences_watermark": 28615, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.26", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "40430808-1bbf-418f-b172-1e360d1f5ed5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.29 746", + "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, + "duration": 0.470270442, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.29 ingressOctets=937876142,egressOctets=508959383,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.29", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b8045d7e-ec8d-408c-b19f-35757d79bdd8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.3 1008", + "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, + "duration": 0.410044898, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783454 + }, + { + "status": 0, + "executed": 1692783754 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784355 + }, + { + "status": 0, + "executed": 1692784655 + }, + { + "status": 0, + "executed": 1692784955 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785556 + }, + { + "status": 0, + "executed": 1692785856 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786457 + }, + { + "status": 0, + "executed": 1692786757 + }, + { + "status": 0, + "executed": 1692787057 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787658 + }, + { + "status": 0, + "executed": 1692787958 + }, + { + "status": 0, + "executed": 1692788258 + }, + { + "status": 0, + "executed": 1692788558 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.3 ingressOctets=16460911189822,egressOctets=16061810111201,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a3ada20c-0882-451b-9d30-d98342959567", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.30 761", + "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, + "duration": 0.430377091, + "executed": 1692789710, + "history": [ + { + "status": 0, + "executed": 1692783705 + }, + { + "status": 0, + "executed": 1692784006 + }, + { + "status": 0, + "executed": 1692784306 + }, + { + "status": 0, + "executed": 1692784606 + }, + { + "status": 0, + "executed": 1692784906 + }, + { + "status": 0, + "executed": 1692785206 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785807 + }, + { + "status": 0, + "executed": 1692786107 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786709 + }, + { + "status": 0, + "executed": 1692787009 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788210 + }, + { + "status": 0, + "executed": 1692788510 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789710 + } + ], + "issued": 1692789710, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.30 ingressOctets=37248135865081,egressOctets=153925738023417,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789710, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.30", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6096a3a6-6149-4ec1-9753-5316f33277f8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789711 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.31 803", + "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, + "duration": 0.4224898, + "executed": 1692789462, + "history": [ + { + "status": 0, + "executed": 1692783457 + }, + { + "status": 0, + "executed": 1692783757 + }, + { + "status": 0, + "executed": 1692784058 + }, + { + "status": 0, + "executed": 1692784358 + }, + { + "status": 0, + "executed": 1692784658 + }, + { + "status": 0, + "executed": 1692784958 + }, + { + "status": 0, + "executed": 1692785259 + }, + { + "status": 0, + "executed": 1692785559 + }, + { + "status": 0, + "executed": 1692785859 + }, + { + "status": 0, + "executed": 1692786159 + }, + { + "status": 0, + "executed": 1692786460 + }, + { + "status": 0, + "executed": 1692786760 + }, + { + "status": 0, + "executed": 1692787060 + }, + { + "status": 0, + "executed": 1692787361 + }, + { + "status": 0, + "executed": 1692787661 + }, + { + "status": 0, + "executed": 1692787961 + }, + { + "status": 0, + "executed": 1692788262 + }, + { + "status": 0, + "executed": 1692788562 + }, + { + "status": 0, + "executed": 1692788862 + }, + { + "status": 0, + "executed": 1692789162 + }, + { + "status": 0, + "executed": 1692789462 + } + ], + "issued": 1692789462, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.31 ingressOctets=2035051930,egressOctets=7125582056,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789462, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.31", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e328f1f5-ea4a-4761-979a-84c225232a69", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789463 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.33 1354", + "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, + "duration": 0.461367867, + "executed": 1692789721, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785818 + }, + { + "status": 0, + "executed": 1692786118 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786719 + }, + { + "status": 0, + "executed": 1692787019 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787920 + }, + { + "status": 0, + "executed": 1692788220 + }, + { + "status": 0, + "executed": 1692788520 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789121 + }, + { + "status": 0, + "executed": 1692789421 + }, + { + "status": 0, + "executed": 1692789721 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.33 ingressOctets=2104370444,egressOctets=164530541507,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789721, + "occurrences": 33403, + "occurrences_watermark": 33403, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.33", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b509261e-0c9b-43c3-a320-f05e5c6f2edd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.34 1358", + "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, + "duration": 0.457063229, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.34 ingressOctets=479396185,egressOctets=55358607,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 33401, + "occurrences_watermark": 33401, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.34", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "da0d8e14-0e8e-47d1-9d33-42a24f8c4858", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.35 1409", + "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, + "duration": 0.465309638, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.35 ingressOctets=1569361999,egressOctets=1552074706,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 27540, + "occurrences_watermark": 27540, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.35", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "15e93bda-e347-411b-b82c-4a8ad0526ebe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.37 1452", + "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, + "duration": 0.428869945, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785995 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.37 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 2566, + "occurrences_watermark": 2566, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.37", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a2a04e61-f42a-4d49-808f-d884a94bccb4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 856, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.4 1025", + "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, + "duration": 0.434190264, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783454 + }, + { + "status": 0, + "executed": 1692783754 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784355 + }, + { + "status": 0, + "executed": 1692784655 + }, + { + "status": 0, + "executed": 1692784955 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785556 + }, + { + "status": 0, + "executed": 1692785856 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786456 + }, + { + "status": 0, + "executed": 1692786757 + }, + { + "status": 0, + "executed": 1692787057 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787658 + }, + { + "status": 0, + "executed": 1692787958 + }, + { + "status": 0, + "executed": 1692788258 + }, + { + "status": 0, + "executed": 1692788558 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.4 ingressOctets=512229007121,egressOctets=1972415366801,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "405bf4e7-e959-4132-9313-aeb8aedd3ecd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.5 1030", + "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, + "duration": 0.382970026, + "executed": 1692789469, + "history": [ + { + "status": 0, + "executed": 1692783464 + }, + { + "status": 0, + "executed": 1692783764 + }, + { + "status": 0, + "executed": 1692784065 + }, + { + "status": 0, + "executed": 1692784365 + }, + { + "status": 0, + "executed": 1692784665 + }, + { + "status": 0, + "executed": 1692784965 + }, + { + "status": 0, + "executed": 1692785266 + }, + { + "status": 0, + "executed": 1692785566 + }, + { + "status": 0, + "executed": 1692785866 + }, + { + "status": 0, + "executed": 1692786166 + }, + { + "status": 0, + "executed": 1692786467 + }, + { + "status": 0, + "executed": 1692786767 + }, + { + "status": 0, + "executed": 1692787067 + }, + { + "status": 0, + "executed": 1692787368 + }, + { + "status": 0, + "executed": 1692787668 + }, + { + "status": 0, + "executed": 1692787968 + }, + { + "status": 0, + "executed": 1692788269 + }, + { + "status": 0, + "executed": 1692788569 + }, + { + "status": 0, + "executed": 1692788869 + }, + { + "status": 0, + "executed": 1692789169 + }, + { + "status": 0, + "executed": 1692789469 + } + ], + "issued": 1692789469, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.5 ingressOctets=916614553,egressOctets=1898342722,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789469, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c29bbbff-d553-437b-8919-2aef65026b12", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789470 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.6 1002", + "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, + "duration": 0.507616711, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.6 ingressOctets=468815588713,egressOctets=8662261444848,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "01df3f13-5fdf-489b-9e3e-42948c5d45b0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.7 1103", + "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, + "duration": 0.469535274, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783451 + }, + { + "status": 0, + "executed": 1692783751 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784352 + }, + { + "status": 0, + "executed": 1692784652 + }, + { + "status": 0, + "executed": 1692784952 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785553 + }, + { + "status": 0, + "executed": 1692785853 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786754 + }, + { + "status": 0, + "executed": 1692787054 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787655 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.7 ingressOctets=12338060891532,egressOctets=12948721158327,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "316f68bf-3452-4cc1-ba30-0a386c5d6119", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.8 1111", + "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, + "duration": 0.427631045, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786123 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.8 ingressOctets=275900654371,egressOctets=13650854720688,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "607ba3a1-423a-40d2-be7d-9e0b6811cfc0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae21.9 1048", + "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, + "duration": 0.453391949, + "executed": 1692789470, + "history": [ + { + "status": 0, + "executed": 1692783465 + }, + { + "status": 0, + "executed": 1692783765 + }, + { + "status": 0, + "executed": 1692784066 + }, + { + "status": 0, + "executed": 1692784366 + }, + { + "status": 0, + "executed": 1692784666 + }, + { + "status": 0, + "executed": 1692784967 + }, + { + "status": 0, + "executed": 1692785267 + }, + { + "status": 0, + "executed": 1692785567 + }, + { + "status": 0, + "executed": 1692785867 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786468 + }, + { + "status": 0, + "executed": 1692786768 + }, + { + "status": 0, + "executed": 1692787068 + }, + { + "status": 0, + "executed": 1692787369 + }, + { + "status": 0, + "executed": 1692787669 + }, + { + "status": 0, + "executed": 1692787969 + }, + { + "status": 0, + "executed": 1692788270 + }, + { + "status": 0, + "executed": 1692788570 + }, + { + "status": 0, + "executed": 1692788870 + }, + { + "status": 0, + "executed": 1692789170 + }, + { + "status": 0, + "executed": 1692789470 + } + ], + "issued": 1692789470, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae21.9 ingressOctets=1156516367462,egressOctets=390469034334,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789470, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae21.9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2131be3a-4311-412f-9d98-e536a382951c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789471 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae22 1345", + "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, + "duration": 0.416860335, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae22 ingressOctets=55862140321,egressOctets=1144328909,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "39119612-8d83-4b8a-90b0-62590aaebb50", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae22.0 1346", + "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, + "duration": 0.416358571, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae22.0 ingressOctets=55862134779,egressOctets=1125520579,ingressErrors=0,egressErrors=0,ingressOctetsv6=161132642,egressOctetsv6=119102,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae22.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "902c0b37-f256-4b10-9632-c57a2c2957a5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae23 730", + "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, + "duration": 0.467822838, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783460 + }, + { + "status": 0, + "executed": 1692783760 + }, + { + "status": 0, + "executed": 1692784060 + }, + { + "status": 0, + "executed": 1692784361 + }, + { + "status": 0, + "executed": 1692784661 + }, + { + "status": 0, + "executed": 1692784961 + }, + { + "status": 0, + "executed": 1692785261 + }, + { + "status": 0, + "executed": 1692785562 + }, + { + "status": 0, + "executed": 1692785862 + }, + { + "status": 0, + "executed": 1692786162 + }, + { + "status": 0, + "executed": 1692786463 + }, + { + "status": 0, + "executed": 1692786763 + }, + { + "status": 0, + "executed": 1692787063 + }, + { + "status": 0, + "executed": 1692787363 + }, + { + "status": 0, + "executed": 1692787664 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788265 + }, + { + "status": 0, + "executed": 1692788565 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789465, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae23 ingressOctets=2454548008,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7557a969-39b4-41e2-a467-0e3d6d898c65", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789466 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae24 731", + "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, + "duration": 0.438230619, + "executed": 1692789438, + "history": [ + { + "status": 0, + "executed": 1692783435 + }, + { + "status": 0, + "executed": 1692783735 + }, + { + "status": 0, + "executed": 1692784035 + }, + { + "status": 0, + "executed": 1692784335 + }, + { + "status": 0, + "executed": 1692784635 + }, + { + "status": 0, + "executed": 1692784935 + }, + { + "status": 0, + "executed": 1692785235 + }, + { + "status": 0, + "executed": 1692785535 + }, + { + "status": 0, + "executed": 1692785836 + }, + { + "status": 0, + "executed": 1692786136 + }, + { + "status": 0, + "executed": 1692786436 + }, + { + "status": 0, + "executed": 1692786737 + }, + { + "status": 0, + "executed": 1692787037 + }, + { + "status": 0, + "executed": 1692787337 + }, + { + "status": 0, + "executed": 1692787638 + }, + { + "status": 0, + "executed": 1692787938 + }, + { + "status": 0, + "executed": 1692788238 + }, + { + "status": 0, + "executed": 1692788538 + }, + { + "status": 0, + "executed": 1692788838 + }, + { + "status": 0, + "executed": 1692789138 + }, + { + "status": 0, + "executed": 1692789438 + } + ], + "issued": 1692789438, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae24 ingressOctets=136940605074602,egressOctets=121854600459427,ingressErrors=9,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789438, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae24", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "311734ac-21c4-4a0b-8df2-a6f6d556724a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789439 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae24.100 1350", + "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, + "duration": 0.394182683, + "executed": 1692789469, + "history": [ + { + "status": 0, + "executed": 1692783464 + }, + { + "status": 0, + "executed": 1692783764 + }, + { + "status": 0, + "executed": 1692784065 + }, + { + "status": 0, + "executed": 1692784365 + }, + { + "status": 0, + "executed": 1692784665 + }, + { + "status": 0, + "executed": 1692784965 + }, + { + "status": 0, + "executed": 1692785266 + }, + { + "status": 0, + "executed": 1692785566 + }, + { + "status": 0, + "executed": 1692785866 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786467 + }, + { + "status": 0, + "executed": 1692786767 + }, + { + "status": 0, + "executed": 1692787067 + }, + { + "status": 0, + "executed": 1692787368 + }, + { + "status": 0, + "executed": 1692787668 + }, + { + "status": 0, + "executed": 1692787968 + }, + { + "status": 0, + "executed": 1692788269 + }, + { + "status": 0, + "executed": 1692788569 + }, + { + "status": 0, + "executed": 1692788869 + }, + { + "status": 0, + "executed": 1692789169 + }, + { + "status": 0, + "executed": 1692789469 + } + ], + "issued": 1692789469, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae24.100 ingressOctets=136938251773594,egressOctets=121855097847251,ingressErrors=0,egressErrors=0,ingressOctetsv6=157454112518,egressOctetsv6=24017751970571,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789469, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae24.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "48b87d42-f763-4efa-9dac-34dc746f83fe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789470 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae25 732", + "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, + "duration": 0.475404612, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785533 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae25 ingressOctets=86489459456318,egressOctets=17081236505215,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4f59d06f-f02a-45be-b5ab-cdbecd39045d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae25.100 1371", + "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, + "duration": 0.463261515, + "executed": 1692789490, + "history": [ + { + "status": 0, + "executed": 1692783485 + }, + { + "status": 0, + "executed": 1692783785 + }, + { + "status": 0, + "executed": 1692784086 + }, + { + "status": 0, + "executed": 1692784386 + }, + { + "status": 0, + "executed": 1692784686 + }, + { + "status": 0, + "executed": 1692784986 + }, + { + "status": 0, + "executed": 1692785286 + }, + { + "status": 0, + "executed": 1692785587 + }, + { + "status": 0, + "executed": 1692785887 + }, + { + "status": 0, + "executed": 1692786187 + }, + { + "status": 0, + "executed": 1692786488 + }, + { + "status": 0, + "executed": 1692786788 + }, + { + "status": 0, + "executed": 1692787088 + }, + { + "status": 0, + "executed": 1692787388 + }, + { + "status": 0, + "executed": 1692787689 + }, + { + "status": 0, + "executed": 1692787989 + }, + { + "status": 0, + "executed": 1692788289 + }, + { + "status": 0, + "executed": 1692788589 + }, + { + "status": 0, + "executed": 1692788890 + }, + { + "status": 0, + "executed": 1692789190 + }, + { + "status": 0, + "executed": 1692789490 + } + ], + "issued": 1692789489, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae25.100 ingressOctets=86489503619198,egressOctets=17081725407312,ingressErrors=0,egressErrors=0,ingressOctetsv6=127857871,egressOctetsv6=18754,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789490, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae25.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d608bee3-2e90-40aa-828f-837378db449f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789490 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae26 733", + "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, + "duration": 0.436829207, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae26 ingressOctets=2736853347,egressOctets=1283046542,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae26", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "779f7f0a-6743-4526-8b4e-20393b78ca50", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae26.0 756", + "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, + "duration": 0.466568269, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae26.0 ingressOctets=2736855821,egressOctets=1265503983,ingressErrors=0,egressErrors=0,ingressOctetsv6=148941161,egressOctetsv6=108978,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae26.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1068bd39-51b2-4844-85e1-40198598a894", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae27 734", + "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, + "duration": 0.414140275, + "executed": 1692789493, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786491 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789493 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae27 ingressOctets=195272628700714,egressOctets=13601134229,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789493, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae27", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "18b9d3b3-7655-42d8-8377-1dfa63c9aed0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789494 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae27.4001 1390", + "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, + "duration": 0.419626035, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae27.4001 ingressOctets=90421401130,egressOctets=11387796316,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae27.4001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dfbbe559-a1ea-417f-8db3-8dd0c5e42dde", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae27.4002 1437", + "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, + "duration": 0.450730666, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784621 + }, + { + "status": 0, + "executed": 1692784921 + }, + { + "status": 0, + "executed": 1692785221 + }, + { + "status": 0, + "executed": 1692785521 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786422 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787323 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae27.4002 ingressOctets=195120108041546,egressOctets=1998990565,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae27.4002", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e6740f8-c32f-47e6-a62c-3e1ac78ab1d5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789425 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae27.4003 1433", + "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, + "duration": 0.508298168, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788261 + }, + { + "status": 0, + "executed": 1692788561 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae27.4003 ingressOctets=53937690810,egressOctets=214367118,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae27.4003", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e060e9ea-1202-4437-a46e-b2ba2ba55317", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789462 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae3 631", + "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, + "duration": 0.48584481, + "executed": 1692789711, + "history": [ + { + "status": 0, + "executed": 1692783707 + }, + { + "status": 0, + "executed": 1692784008 + }, + { + "status": 0, + "executed": 1692784308 + }, + { + "status": 0, + "executed": 1692784608 + }, + { + "status": 0, + "executed": 1692784908 + }, + { + "status": 0, + "executed": 1692785208 + }, + { + "status": 0, + "executed": 1692785508 + }, + { + "status": 0, + "executed": 1692785809 + }, + { + "status": 0, + "executed": 1692786109 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786710 + }, + { + "status": 0, + "executed": 1692787010 + }, + { + "status": 0, + "executed": 1692787310 + }, + { + "status": 0, + "executed": 1692787610 + }, + { + "status": 0, + "executed": 1692787910 + }, + { + "status": 0, + "executed": 1692788211 + }, + { + "status": 0, + "executed": 1692788511 + }, + { + "status": 0, + "executed": 1692788811 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789711 + } + ], + "issued": 1692789711, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae3 ingressOctets=24061944207854792,egressOctets=22989618121804815,ingressErrors=26,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789711, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9a0c7a63-80b2-4723-854a-88f7837fa1f9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789712 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae3.0 1319", + "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, + "duration": 0.451715356, + "executed": 1692789426, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787925 + }, + { + "status": 0, + "executed": 1692788225 + }, + { + "status": 0, + "executed": 1692788525 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789126 + }, + { + "status": 0, + "executed": 1692789426 + } + ], + "issued": 1692789426, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae3.0 ingressOctets=24061848063712991,egressOctets=22989245410723601,ingressErrors=0,egressErrors=0,ingressOctetsv6=2503441997065898,egressOctetsv6=3195973870920637,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789426, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1d357bca-2aea-4134-ac5e-a36e41f153f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae4 632", + "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, + "duration": 0.402819811, + "executed": 1692789454, + "history": [ + { + "status": 0, + "executed": 1692783450 + }, + { + "status": 0, + "executed": 1692783750 + }, + { + "status": 0, + "executed": 1692784050 + }, + { + "status": 0, + "executed": 1692784350 + }, + { + "status": 0, + "executed": 1692784651 + }, + { + "status": 0, + "executed": 1692784951 + }, + { + "status": 0, + "executed": 1692785251 + }, + { + "status": 0, + "executed": 1692785552 + }, + { + "status": 0, + "executed": 1692785852 + }, + { + "status": 0, + "executed": 1692786152 + }, + { + "status": 0, + "executed": 1692786452 + }, + { + "status": 0, + "executed": 1692786753 + }, + { + "status": 0, + "executed": 1692787053 + }, + { + "status": 0, + "executed": 1692787353 + }, + { + "status": 0, + "executed": 1692787654 + }, + { + "status": 0, + "executed": 1692787954 + }, + { + "status": 0, + "executed": 1692788254 + }, + { + "status": 0, + "executed": 1692788554 + }, + { + "status": 0, + "executed": 1692788854 + }, + { + "status": 0, + "executed": 1692789154 + }, + { + "status": 0, + "executed": 1692789454 + } + ], + "issued": 1692789454, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae4 ingressOctets=2828488210521635,egressOctets=5300215823842070,ingressErrors=11,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789454, + "occurrences": 33405, + "occurrences_watermark": 33405, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2153e3ac-2972-4e0d-b37b-608af59e08b4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789455 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae4.0 663", + "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, + "duration": 0.47121805, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae4.0 ingressOctets=2828488501843514,egressOctets=5300216079562014,ingressErrors=0,egressErrors=0,ingressOctetsv6=324027703158025,egressOctetsv6=1196170401063825,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 33401, + "occurrences_watermark": 33401, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d3de3c27-8ed2-4556-831a-2c3d31da7d5b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae7 705", + "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, + "duration": 0.441603123, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae7 ingressOctets=90391038024130882,egressOctets=138593997416677238,ingressErrors=21,egressErrors=21,ingressDiscards=0,egressDiscards=18575\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0d7d80ac-44b4-4796-9818-6316882ba260", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae7.0 1477", + "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, + "duration": 0.43860723, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783451 + }, + { + "status": 0, + "executed": 1692783751 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784351 + }, + { + "status": 0, + "executed": 1692784652 + }, + { + "status": 0, + "executed": 1692784952 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785553 + }, + { + "status": 0, + "executed": 1692785853 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786754 + }, + { + "status": 0, + "executed": 1692787054 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787655 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae7.0 ingressOctets=90390912579296935,egressOctets=138593694335708706,ingressErrors=0,egressErrors=0,ingressOctetsv6=11907567255514336,egressOctetsv6=19160316543963011,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "49a2519f-d594-4146-b11e-0a6130eaf4b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae8 1430", + "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, + "duration": 0.461870473, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae8 ingressOctets=844742843063424,egressOctets=1504317494009087,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9597601a-5355-496d-9e65-3da216fa19d6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae8.0 1431", + "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, + "duration": 0.519730238, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783475 + }, + { + "status": 0, + "executed": 1692783775 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae8.0 ingressOctets=844742638763109,egressOctets=1504317357121709,ingressErrors=0,egressErrors=0,ingressOctetsv6=5612978167191,egressOctetsv6=2143639889783,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 18137, + "occurrences_watermark": 18137, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae8.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "204130b2-f391-44f8-b3b4-98413def6dd5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae9 707", + "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, + "duration": 0.410353016, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae9 ingressOctets=110168670514918998,egressOctets=63302593635710203,ingressErrors=95,egressErrors=53,ingressDiscards=0,egressDiscards=724012\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "54ea19e1-f6ec-47c1-a189-16d53dbf437b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789488 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ae9.0 1501", + "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, + "duration": 0.49436099, + "executed": 1692789497, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787095 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787696 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788897 + }, + { + "status": 0, + "executed": 1692789197 + }, + { + "status": 0, + "executed": 1692789497 + } + ], + "issued": 1692789497, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ae9.0 ingressOctets=110168703508050869,egressOctets=63302612813396381,ingressErrors=0,egressErrors=0,ingressOctetsv6=20558001428764009,egressOctetsv6=10895085346574738,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789497, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ae9.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0b085051-133e-4102-a6b4-e22fe0f152ca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-10/0/2 1289", + "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, + "duration": 0.546550063, + "executed": 1692789424, + "history": [ + { + "status": 0, + "executed": 1692783420 + }, + { + "status": 0, + "executed": 1692783720 + }, + { + "status": 0, + "executed": 1692784020 + }, + { + "status": 0, + "executed": 1692784320 + }, + { + "status": 0, + "executed": 1692784620 + }, + { + "status": 0, + "executed": 1692784920 + }, + { + "status": 0, + "executed": 1692785220 + }, + { + "status": 0, + "executed": 1692785520 + }, + { + "status": 0, + "executed": 1692785821 + }, + { + "status": 0, + "executed": 1692786121 + }, + { + "status": 0, + "executed": 1692786421 + }, + { + "status": 0, + "executed": 1692786722 + }, + { + "status": 0, + "executed": 1692787022 + }, + { + "status": 0, + "executed": 1692787322 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787923 + }, + { + "status": 0, + "executed": 1692788223 + }, + { + "status": 0, + "executed": 1692788523 + }, + { + "status": 0, + "executed": 1692788823 + }, + { + "status": 0, + "executed": 1692789124 + }, + { + "status": 0, + "executed": 1692789424 + } + ], + "issued": 1692789424, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-10/0/2 ingressOctets=16826271976900240,egressOctets=10404352202113348,ingressErrors=3,egressErrors=6,ingressDiscards=0,egressDiscards=418018\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789424, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-10-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "351dadce-76c4-4d82-a628-e32c71b4dee3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789424 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-10/0/5 1295", + "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, + "duration": 0.419078201, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787981 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-10/0/5 ingressOctets=18580401261121856,egressOctets=10387966478868872,ingressErrors=4,egressErrors=5,ingressDiscards=0,egressDiscards=305994\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-10-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a0c7fe75-59c2-4dde-b826-62c4ce8003be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-10/1/2 1299", + "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, + "duration": 0.645775586, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785595 + }, + { + "status": 0, + "executed": 1692785895 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-10/1/2 ingressOctets=17653022837801076,egressOctets=10398101111265428,ingressErrors=2,egressErrors=5,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-10-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "19f9eb2b-b87a-4c01-9886-4f97ee0808b9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789500 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-10/1/5 1305", + "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, + "duration": 0.404928417, + "executed": 1692789495, + "history": [ + { + "status": 0, + "executed": 1692783491 + }, + { + "status": 0, + "executed": 1692783791 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784992 + }, + { + "status": 0, + "executed": 1692785292 + }, + { + "status": 0, + "executed": 1692785592 + }, + { + "status": 0, + "executed": 1692785892 + }, + { + "status": 0, + "executed": 1692786192 + }, + { + "status": 0, + "executed": 1692786493 + }, + { + "status": 0, + "executed": 1692786793 + }, + { + "status": 0, + "executed": 1692787093 + }, + { + "status": 0, + "executed": 1692787394 + }, + { + "status": 0, + "executed": 1692787694 + }, + { + "status": 0, + "executed": 1692787994 + }, + { + "status": 0, + "executed": 1692788295 + }, + { + "status": 0, + "executed": 1692788595 + }, + { + "status": 0, + "executed": 1692788895 + }, + { + "status": 0, + "executed": 1692789195 + }, + { + "status": 0, + "executed": 1692789495 + } + ], + "issued": 1692789495, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-10/1/5 ingressOctets=203657001920022,egressOctets=416001043805486,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789495, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-10-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cbcbcf7f-106c-43e7-bf77-f293147087b6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789496 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-11/1/0 1235", + "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, + "duration": 0.46000218, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783450 + }, + { + "status": 0, + "executed": 1692783750 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784351 + }, + { + "status": 0, + "executed": 1692784651 + }, + { + "status": 0, + "executed": 1692784951 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785552 + }, + { + "status": 0, + "executed": 1692785852 + }, + { + "status": 0, + "executed": 1692786152 + }, + { + "status": 0, + "executed": 1692786453 + }, + { + "status": 0, + "executed": 1692786753 + }, + { + "status": 0, + "executed": 1692787053 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787654 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-11/1/0 ingressOctets=8774860806789453,egressOctets=16472806602866584,ingressErrors=6872,egressErrors=0,ingressDiscards=0,egressDiscards=26780633\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-11-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4815dc11-e476-4944-8ae3-1f15848b6212", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-11/3/0 1240", + "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, + "duration": 0.424554284, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-11/3/0 ingressOctets=12031493921132940,egressOctets=11496176296235309,ingressErrors=10,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-11-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a718e466-6bf6-41d3-83b8-d0e6e2563f74", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/0/2 1070", + "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, + "duration": 0.401709376, + "executed": 1692789485, + "history": [ + { + "status": 0, + "executed": 1692783480 + }, + { + "status": 0, + "executed": 1692783780 + }, + { + "status": 0, + "executed": 1692784081 + }, + { + "status": 0, + "executed": 1692784381 + }, + { + "status": 0, + "executed": 1692784681 + }, + { + "status": 0, + "executed": 1692784981 + }, + { + "status": 0, + "executed": 1692785281 + }, + { + "status": 0, + "executed": 1692785582 + }, + { + "status": 0, + "executed": 1692785882 + }, + { + "status": 0, + "executed": 1692786182 + }, + { + "status": 0, + "executed": 1692786483 + }, + { + "status": 0, + "executed": 1692786783 + }, + { + "status": 0, + "executed": 1692787083 + }, + { + "status": 0, + "executed": 1692787383 + }, + { + "status": 0, + "executed": 1692787684 + }, + { + "status": 0, + "executed": 1692787984 + }, + { + "status": 0, + "executed": 1692788284 + }, + { + "status": 0, + "executed": 1692788584 + }, + { + "status": 0, + "executed": 1692788885 + }, + { + "status": 0, + "executed": 1692789185 + }, + { + "status": 0, + "executed": 1692789485 + } + ], + "issued": 1692789484, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/0/2 ingressOctets=8681651109256939,egressOctets=16490357442668364,ingressErrors=355,egressErrors=3,ingressDiscards=0,egressDiscards=53379824\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789485, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2c61c0ab-918c-465b-9136-b66a284a9c60", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789485 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/0/5 1071", + "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, + "duration": 0.511112784, + "executed": 1692789424, + "history": [ + { + "status": 0, + "executed": 1692783420 + }, + { + "status": 0, + "executed": 1692783720 + }, + { + "status": 0, + "executed": 1692784020 + }, + { + "status": 0, + "executed": 1692784320 + }, + { + "status": 0, + "executed": 1692784620 + }, + { + "status": 0, + "executed": 1692784920 + }, + { + "status": 0, + "executed": 1692785220 + }, + { + "status": 0, + "executed": 1692785520 + }, + { + "status": 0, + "executed": 1692785821 + }, + { + "status": 0, + "executed": 1692786121 + }, + { + "status": 0, + "executed": 1692786421 + }, + { + "status": 0, + "executed": 1692786722 + }, + { + "status": 0, + "executed": 1692787022 + }, + { + "status": 0, + "executed": 1692787322 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787923 + }, + { + "status": 0, + "executed": 1692788223 + }, + { + "status": 0, + "executed": 1692788523 + }, + { + "status": 0, + "executed": 1692788823 + }, + { + "status": 0, + "executed": 1692789124 + }, + { + "status": 0, + "executed": 1692789424 + } + ], + "issued": 1692789424, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/0/5 ingressOctets=12030357542107301,egressOctets=11493089389287130,ingressErrors=16,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789424, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "68a34a63-4a97-42f3-831e-edd583e8cc71", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789424 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2 1075", + "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, + "duration": 0.455525286, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2 ingressOctets=38247746570444678,egressOctets=28289833265366157,ingressErrors=0,egressErrors=3,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ac500e74-02b7-4598-a849-391d7dab4601", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.100 1077", + "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, + "duration": 0.445832162, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.100 ingressOctets=465866847460,egressOctets=584295287435,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "796f744f-a674-4201-a736-f6b757ca02e9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789504 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.101 985", + "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, + "duration": 0.47849544, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.101 ingressOctets=509861024,egressOctets=9624158,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0f6a584d-8f86-4b14-9d09-46692c7576c6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.1303 1356", + "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, + "duration": 0.55357451, + "executed": 1692789434, + "history": [ + { + "status": 0, + "executed": 1692783430 + }, + { + "status": 0, + "executed": 1692783730 + }, + { + "status": 0, + "executed": 1692784030 + }, + { + "status": 0, + "executed": 1692784330 + }, + { + "status": 0, + "executed": 1692784631 + }, + { + "status": 0, + "executed": 1692784931 + }, + { + "status": 0, + "executed": 1692785231 + }, + { + "status": 0, + "executed": 1692785531 + }, + { + "status": 0, + "executed": 1692785831 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786432 + }, + { + "status": 0, + "executed": 1692786732 + }, + { + "status": 0, + "executed": 1692787032 + }, + { + "status": 0, + "executed": 1692787333 + }, + { + "status": 0, + "executed": 1692787633 + }, + { + "status": 0, + "executed": 1692787933 + }, + { + "status": 0, + "executed": 1692788233 + }, + { + "status": 0, + "executed": 1692788533 + }, + { + "status": 0, + "executed": 1692788834 + }, + { + "status": 0, + "executed": 1692789134 + }, + { + "status": 0, + "executed": 1692789434 + } + ], + "issued": 1692789434, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.1303 ingressOctets=600965,egressOctets=421299,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789434, + "occurrences": 33403, + "occurrences_watermark": 33403, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.1303", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b8ba2855-f7f1-494d-9487-f7e2ac4f5bd7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.1304 1357", + "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, + "duration": 0.461769128, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783491 + }, + { + "status": 0, + "executed": 1692783791 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784992 + }, + { + "status": 0, + "executed": 1692785292 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786193 + }, + { + "status": 0, + "executed": 1692786493 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.1304 ingressOctets=18963071,egressOctets=3419822189,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 33400, + "occurrences_watermark": 33400, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.1304", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b362d57a-359a-4ccd-b3bf-9e774a0a185c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789496 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.2013 1085", + "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, + "duration": 0.427033632, + "executed": 1692789510, + "history": [ + { + "status": 0, + "executed": 1692783505 + }, + { + "status": 0, + "executed": 1692783805 + }, + { + "status": 0, + "executed": 1692784106 + }, + { + "status": 0, + "executed": 1692784406 + }, + { + "status": 0, + "executed": 1692784706 + }, + { + "status": 0, + "executed": 1692785006 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785607 + }, + { + "status": 0, + "executed": 1692785907 + }, + { + "status": 0, + "executed": 1692786208 + }, + { + "status": 0, + "executed": 1692786508 + }, + { + "status": 0, + "executed": 1692786808 + }, + { + "status": 0, + "executed": 1692787108 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787709 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788910 + }, + { + "status": 0, + "executed": 1692789210 + }, + { + "status": 0, + "executed": 1692789510 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.2013 ingressOctets=184644580595885,egressOctets=455031936,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789510, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.2013", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e6279ed5-af30-47a3-b4bf-6ef00dba5568", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789510 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.2023 1086", + "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, + "duration": 0.432347037, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.2023 ingressOctets=9163182596540885,egressOctets=17885582123930665,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.2023", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "60971147-d9ad-43d6-9d67-bb8596ac398d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.2282 1322", + "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, + "duration": 0.446074354, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.2282 ingressOctets=512438253435,egressOctets=846238859932,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.2282", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "23917831-3296-452d-b29f-113d61a3f5cf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.300 1300", + "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, + "duration": 0.475600674, + "executed": 1692789468, + "history": [ + { + "status": 0, + "executed": 1692783463 + }, + { + "status": 0, + "executed": 1692783763 + }, + { + "status": 0, + "executed": 1692784063 + }, + { + "status": 0, + "executed": 1692784364 + }, + { + "status": 0, + "executed": 1692784664 + }, + { + "status": 0, + "executed": 1692784964 + }, + { + "status": 0, + "executed": 1692785264 + }, + { + "status": 0, + "executed": 1692785565 + }, + { + "status": 0, + "executed": 1692785865 + }, + { + "status": 0, + "executed": 1692786165 + }, + { + "status": 0, + "executed": 1692786466 + }, + { + "status": 0, + "executed": 1692786766 + }, + { + "status": 0, + "executed": 1692787066 + }, + { + "status": 0, + "executed": 1692787366 + }, + { + "status": 0, + "executed": 1692787667 + }, + { + "status": 0, + "executed": 1692787967 + }, + { + "status": 0, + "executed": 1692788267 + }, + { + "status": 0, + "executed": 1692788567 + }, + { + "status": 0, + "executed": 1692788868 + }, + { + "status": 0, + "executed": 1692789168 + }, + { + "status": 0, + "executed": 1692789468 + } + ], + "issued": 1692789467, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.300 ingressOctets=872875484294,egressOctets=2819512590372,ingressErrors=0,egressErrors=0,ingressOctetsv6=290352,egressOctetsv6=6498268,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789468, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.300", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fb0d1473-811c-4aa8-baca-6d5c806be5fc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789468 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.301 1301", + "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, + "duration": 0.405624534, + "executed": 1692789476, + "history": [ + { + "status": 0, + "executed": 1692783470 + }, + { + "status": 0, + "executed": 1692783770 + }, + { + "status": 0, + "executed": 1692784072 + }, + { + "status": 0, + "executed": 1692784372 + }, + { + "status": 0, + "executed": 1692784672 + }, + { + "status": 0, + "executed": 1692784972 + }, + { + "status": 0, + "executed": 1692785272 + }, + { + "status": 0, + "executed": 1692785573 + }, + { + "status": 0, + "executed": 1692785873 + }, + { + "status": 0, + "executed": 1692786173 + }, + { + "status": 0, + "executed": 1692786474 + }, + { + "status": 0, + "executed": 1692786774 + }, + { + "status": 0, + "executed": 1692787074 + }, + { + "status": 0, + "executed": 1692787374 + }, + { + "status": 0, + "executed": 1692787675 + }, + { + "status": 0, + "executed": 1692787975 + }, + { + "status": 0, + "executed": 1692788275 + }, + { + "status": 0, + "executed": 1692788575 + }, + { + "status": 0, + "executed": 1692788876 + }, + { + "status": 0, + "executed": 1692789176 + }, + { + "status": 0, + "executed": 1692789476 + } + ], + "issued": 1692789475, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.301 ingressOctets=0,egressOctets=375380980,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789476, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.301", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e3cfc3c2-a14d-4c20-9ecc-c3fa4efbd819", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789476 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3068 1022", + "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, + "duration": 0.420299419, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.3068 ingressOctets=270227219108,egressOctets=2280821752,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.3068", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "45c2d7b3-49a7-41de-8a6c-350ab262d27a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.315 1447", + "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, + "duration": 0.440948924, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.315 ingressOctets=10687578128470,egressOctets=1798130871513,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.315", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "415d6e22-9862-47af-bd86-1540332a4e53", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3222 1089", + "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, + "duration": 0.452305599, + "executed": 1692789721, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785818 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786719 + }, + { + "status": 0, + "executed": 1692787019 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787920 + }, + { + "status": 0, + "executed": 1692788220 + }, + { + "status": 0, + "executed": 1692788520 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789121 + }, + { + "status": 0, + "executed": 1692789421 + }, + { + "status": 0, + "executed": 1692789721 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.3222 ingressOctets=218915946030867,egressOctets=5363471705944304,ingressErrors=0,egressErrors=0,ingressOctetsv6=218840724025731,egressOctetsv6=2437615904974082,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789721, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.3222", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b53e834d-8977-4d6d-99c7-d60419292b84", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3333 1090", + "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, + "duration": 0.468479081, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.3333 ingressOctets=366160625850,egressOctets=1264966974973,ingressErrors=0,egressErrors=0,ingressOctetsv6=383899380,egressOctetsv6=19583238085,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.3333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4247363c-06f9-43e3-99a5-66a7a4dc3e33", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.334 1079", + "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, + "duration": 0.508899679, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783475 + }, + { + "status": 0, + "executed": 1692783775 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.334 ingressOctets=2433332121941,egressOctets=1202704435503703,ingressErrors=0,egressErrors=0,ingressOctetsv6=17703432346,egressOctetsv6=19247553535353,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.334", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6994fe99-7b7d-4b77-8a06-878a9f12a79a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3610 1460", + "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, + "duration": 0.44226095, + "executed": 1692789711, + "history": [ + { + "status": 0, + "executed": 1692783707 + }, + { + "status": 0, + "executed": 1692784007 + }, + { + "status": 0, + "executed": 1692784307 + }, + { + "status": 0, + "executed": 1692784607 + }, + { + "status": 0, + "executed": 1692784907 + }, + { + "status": 0, + "executed": 1692785207 + }, + { + "status": 0, + "executed": 1692785507 + }, + { + "status": 0, + "executed": 1692785808 + }, + { + "status": 0, + "executed": 1692786108 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786709 + }, + { + "status": 0, + "executed": 1692787009 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787910 + }, + { + "status": 0, + "executed": 1692788210 + }, + { + "status": 0, + "executed": 1692788510 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789711 + } + ], + "issued": 1692789710, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.3610 ingressOctets=86612171626768,egressOctets=400151969539763,ingressErrors=0,egressErrors=0,ingressOctetsv6=9951329010666,egressOctetsv6=3905071477915,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789711, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.3610", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b7f852f3-59f1-48c2-966e-3c42d171d1f9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789711 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3611 1488", + "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, + "duration": 0.48566626, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.3611 ingressOctets=2871645717588,egressOctets=2427851925361,ingressErrors=0,egressErrors=0,ingressOctetsv6=53944218136,egressOctetsv6=16739859276,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.3611", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ea2163b3-f16e-483c-bb2d-e1381951fa47", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3695 1309", + "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, + "duration": 0.461638316, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.3695 ingressOctets=0,egressOctets=4497506398,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.3695", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e22b550-0c32-4b63-9c6e-f4eff065ff2a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3920 1429", + "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, + "duration": 0.448590137, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.3920 ingressOctets=805757772,egressOctets=208116380,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 23901, + "occurrences_watermark": 23901, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.3920", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8d796389-5d42-4ba6-b8b8-aea8ca1132cb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.3925 696", + "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, + "duration": 0.464765563, + "executed": 1692789470, + "history": [ + { + "status": 0, + "executed": 1692783465 + }, + { + "status": 0, + "executed": 1692783765 + }, + { + "status": 0, + "executed": 1692784065 + }, + { + "status": 0, + "executed": 1692784366 + }, + { + "status": 0, + "executed": 1692784666 + }, + { + "status": 0, + "executed": 1692784966 + }, + { + "status": 0, + "executed": 1692785266 + }, + { + "status": 0, + "executed": 1692785567 + }, + { + "status": 0, + "executed": 1692785867 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786468 + }, + { + "status": 0, + "executed": 1692786768 + }, + { + "status": 0, + "executed": 1692787068 + }, + { + "status": 0, + "executed": 1692787368 + }, + { + "status": 0, + "executed": 1692787669 + }, + { + "status": 0, + "executed": 1692787969 + }, + { + "status": 0, + "executed": 1692788269 + }, + { + "status": 0, + "executed": 1692788569 + }, + { + "status": 0, + "executed": 1692788870 + }, + { + "status": 0, + "executed": 1692789170 + }, + { + "status": 0, + "executed": 1692789470 + } + ], + "issued": 1692789469, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.3925 ingressOctets=1224110684,egressOctets=11648947379,ingressErrors=0,egressErrors=0,ingressOctetsv6=39622,egressOctetsv6=11416587,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789470, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.3925", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "45a1e6fb-516b-41e2-98e5-da773e55fbe9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789470 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.4005 1091", + "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, + "duration": 0.475913892, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785533 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.4005 ingressOctets=28174657044254954,egressOctets=622675522,ingressErrors=0,egressErrors=0,ingressOctetsv6=28174656919423240,egressOctetsv6=485955069,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.4005", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2652c145-de62-4b70-b34f-30d3c4b24ec1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.4006 750", + "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, + "duration": 0.466126232, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788822 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789722, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.4006 ingressOctets=11519307280,egressOctets=22325412415,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.4006", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b3820297-8de6-4aa5-a78f-b292bee91683", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789723 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.420 1108", + "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, + "duration": 0.512623463, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783431 + }, + { + "status": 0, + "executed": 1692783731 + }, + { + "status": 0, + "executed": 1692784031 + }, + { + "status": 0, + "executed": 1692784331 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785832 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786733 + }, + { + "status": 0, + "executed": 1692787033 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787634 + }, + { + "status": 0, + "executed": 1692787934 + }, + { + "status": 0, + "executed": 1692788234 + }, + { + "status": 0, + "executed": 1692788534 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.420 ingressOctets=6205256707,egressOctets=26177828348,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.420", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ba01d05f-945f-4a36-8542-28cfa53903b4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "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, + "duration": 0.551175667, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783428 + }, + { + "status": 0, + "executed": 1692783728 + }, + { + "status": 0, + "executed": 1692784028 + }, + { + "status": 0, + "executed": 1692784328 + }, + { + "status": 0, + "executed": 1692784629 + }, + { + "status": 0, + "executed": 1692784929 + }, + { + "status": 0, + "executed": 1692785229 + }, + { + "status": 0, + "executed": 1692785529 + }, + { + "status": 0, + "executed": 1692785829 + }, + { + "status": 0, + "executed": 1692786130 + }, + { + "status": 0, + "executed": 1692786430 + }, + { + "status": 0, + "executed": 1692786730 + }, + { + "status": 0, + "executed": 1692787030 + }, + { + "status": 0, + "executed": 1692787331 + }, + { + "status": 0, + "executed": 1692787631 + }, + { + "status": 0, + "executed": 1692787931 + }, + { + "status": 0, + "executed": 1692788231 + }, + { + "status": 0, + "executed": 1692788531 + }, + { + "status": 0, + "executed": 1692788832 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.510 ingressOctets=98328439647861,egressOctets=804278545,ingressErrors=0,egressErrors=0,ingressOctetsv6=98207061499903,egressOctetsv6=853728,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.510", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1a9aed1c-ac6a-4b3c-a506-23db23067975", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.820 1081", + "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, + "duration": 0.395210901, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783450 + }, + { + "status": 0, + "executed": 1692783750 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784351 + }, + { + "status": 0, + "executed": 1692784651 + }, + { + "status": 0, + "executed": 1692784951 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785552 + }, + { + "status": 0, + "executed": 1692785852 + }, + { + "status": 0, + "executed": 1692786152 + }, + { + "status": 0, + "executed": 1692786453 + }, + { + "status": 0, + "executed": 1692786753 + }, + { + "status": 0, + "executed": 1692787053 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787654 + }, + { + "status": 0, + "executed": 1692787954 + }, + { + "status": 0, + "executed": 1692788254 + }, + { + "status": 0, + "executed": 1692788554 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.820 ingressOctets=188059598545951,egressOctets=3132840844599339,ingressErrors=0,egressErrors=0,ingressOctetsv6=188033262048396,egressOctetsv6=1704550509933856,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.820", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f28a4936-f3a8-479e-b446-96f230227ea4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789455 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/2.908 1082", + "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, + "duration": 0.531019047, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/2.908 ingressOctets=16484,egressOctets=2096,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-2.908", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c26fbc39-445e-4396-98c3-cf8f0cbd1564", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/5 1076", + "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, + "duration": 0.48737709, + "executed": 1692789497, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787095 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787696 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788897 + }, + { + "status": 0, + "executed": 1692789197 + }, + { + "status": 0, + "executed": 1692789497 + } + ], + "issued": 1692789497, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/5 ingressOctets=28731293822397132,egressOctets=26774007544560004,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=21643514\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789497, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "27ad287b-d575-46bf-99f7-0e26efc9ccab", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/5.104 1094", + "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, + "duration": 0.46188574, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783481 + }, + { + "status": 0, + "executed": 1692783781 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784982 + }, + { + "status": 0, + "executed": 1692785282 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787384 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787985 + }, + { + "status": 0, + "executed": 1692788285 + }, + { + "status": 0, + "executed": 1692788585 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789485, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/5.104 ingressOctets=4032151624588255,egressOctets=6033275242783272,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-5.104", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6255cb84-1e2f-43b3-8988-0f90cd3a0844", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/5.106 1096", + "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, + "duration": 0.4422344, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/5.106 ingressOctets=6177895064560798,egressOctets=965757867814811,ingressErrors=0,egressErrors=0,ingressOctetsv6=6177894896018444,egressOctetsv6=965757533232153,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-5.106", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f3b254b9-9a4d-4ddd-9517-2544a6d79e03", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789494 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/5.111 1097", + "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, + "duration": 0.46766942, + "executed": 1692789428, + "history": [ + { + "status": 0, + "executed": 1692783424 + }, + { + "status": 0, + "executed": 1692783724 + }, + { + "status": 0, + "executed": 1692784024 + }, + { + "status": 0, + "executed": 1692784324 + }, + { + "status": 0, + "executed": 1692784624 + }, + { + "status": 0, + "executed": 1692784924 + }, + { + "status": 0, + "executed": 1692785224 + }, + { + "status": 0, + "executed": 1692785524 + }, + { + "status": 0, + "executed": 1692785825 + }, + { + "status": 0, + "executed": 1692786125 + }, + { + "status": 0, + "executed": 1692786426 + }, + { + "status": 0, + "executed": 1692786726 + }, + { + "status": 0, + "executed": 1692787026 + }, + { + "status": 0, + "executed": 1692787326 + }, + { + "status": 0, + "executed": 1692787626 + }, + { + "status": 0, + "executed": 1692787927 + }, + { + "status": 0, + "executed": 1692788227 + }, + { + "status": 0, + "executed": 1692788527 + }, + { + "status": 0, + "executed": 1692788827 + }, + { + "status": 0, + "executed": 1692789128 + }, + { + "status": 0, + "executed": 1692789428 + } + ], + "issued": 1692789428, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/5.111 ingressOctets=18521048804927793,egressOctets=19774948212215536,ingressErrors=0,egressErrors=0,ingressOctetsv6=15546634262867136,egressOctetsv6=16773114819494277,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789428, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-5.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1412e7c0-9e31-4736-9616-e9bf39204ade", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789428 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-3/1/5.1220 1098", + "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, + "duration": 0.426883405, + "executed": 1692789467, + "history": [ + { + "status": 0, + "executed": 1692783462 + }, + { + "status": 0, + "executed": 1692783762 + }, + { + "status": 0, + "executed": 1692784063 + }, + { + "status": 0, + "executed": 1692784363 + }, + { + "status": 0, + "executed": 1692784663 + }, + { + "status": 0, + "executed": 1692784963 + }, + { + "status": 0, + "executed": 1692785264 + }, + { + "status": 0, + "executed": 1692785564 + }, + { + "status": 0, + "executed": 1692785864 + }, + { + "status": 0, + "executed": 1692786165 + }, + { + "status": 0, + "executed": 1692786465 + }, + { + "status": 0, + "executed": 1692786765 + }, + { + "status": 0, + "executed": 1692787065 + }, + { + "status": 0, + "executed": 1692787366 + }, + { + "status": 0, + "executed": 1692787666 + }, + { + "status": 0, + "executed": 1692787967 + }, + { + "status": 0, + "executed": 1692788267 + }, + { + "status": 0, + "executed": 1692788567 + }, + { + "status": 0, + "executed": 1692788867 + }, + { + "status": 0, + "executed": 1692789167 + }, + { + "status": 0, + "executed": 1692789467 + } + ], + "issued": 1692789467, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-3/1/5.1220 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789467, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-3-1-5.1220", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1debeb67-8dc5-4ca0-832f-b4d30e9346fe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789467 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-4/0/2 1384", + "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, + "duration": 0.476316309, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-4/0/2 ingressOctets=14857581024146728,egressOctets=2030242473821804,ingressErrors=9,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-4-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e62ee351-3cf4-4b45-817b-8126dcab441e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-4/0/5 1383", + "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, + "duration": 0.43532131, + "executed": 1692789462, + "history": [ + { + "status": 0, + "executed": 1692783457 + }, + { + "status": 0, + "executed": 1692783757 + }, + { + "status": 0, + "executed": 1692784057 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784658 + }, + { + "status": 0, + "executed": 1692784958 + }, + { + "status": 0, + "executed": 1692785258 + }, + { + "status": 0, + "executed": 1692785559 + }, + { + "status": 0, + "executed": 1692785859 + }, + { + "status": 0, + "executed": 1692786159 + }, + { + "status": 0, + "executed": 1692786460 + }, + { + "status": 0, + "executed": 1692786760 + }, + { + "status": 0, + "executed": 1692787060 + }, + { + "status": 0, + "executed": 1692787360 + }, + { + "status": 0, + "executed": 1692787661 + }, + { + "status": 0, + "executed": 1692787961 + }, + { + "status": 0, + "executed": 1692788261 + }, + { + "status": 0, + "executed": 1692788561 + }, + { + "status": 0, + "executed": 1692788862 + }, + { + "status": 0, + "executed": 1692789162 + }, + { + "status": 0, + "executed": 1692789462 + } + ], + "issued": 1692789462, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-4/0/5 ingressOctets=7185462207203034,egressOctets=10671095120244118,ingressErrors=2668,egressErrors=25,ingressDiscards=0,egressDiscards=234856\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789462, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-4-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a6aab130-ad5a-44b4-9a74-de1380df7065", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789462 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-4/1/2 1385", + "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, + "duration": 0.669793656, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785595 + }, + { + "status": 0, + "executed": 1692785895 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-4/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-4-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cbc7c3a0-0213-4b58-a2b0-ee1418914767", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-4/1/5 1386", + "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, + "duration": 0.526425203, + "executed": 1692789441, + "history": [ + { + "status": 0, + "executed": 1692783437 + }, + { + "status": 0, + "executed": 1692783737 + }, + { + "status": 0, + "executed": 1692784038 + }, + { + "status": 0, + "executed": 1692784338 + }, + { + "status": 0, + "executed": 1692784638 + }, + { + "status": 0, + "executed": 1692784939 + }, + { + "status": 0, + "executed": 1692785239 + }, + { + "status": 0, + "executed": 1692785538 + }, + { + "status": 0, + "executed": 1692785839 + }, + { + "status": 0, + "executed": 1692786139 + }, + { + "status": 0, + "executed": 1692786440 + }, + { + "status": 0, + "executed": 1692786740 + }, + { + "status": 0, + "executed": 1692787040 + }, + { + "status": 0, + "executed": 1692787340 + }, + { + "status": 0, + "executed": 1692787641 + }, + { + "status": 0, + "executed": 1692787941 + }, + { + "status": 0, + "executed": 1692788241 + }, + { + "status": 0, + "executed": 1692788541 + }, + { + "status": 0, + "executed": 1692788841 + }, + { + "status": 0, + "executed": 1692789141 + }, + { + "status": 0, + "executed": 1692789441 + } + ], + "issued": 1692789441, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-4/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789441, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-4-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1157508b-2f5c-411a-8f00-2c3ce4f5b0e1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789442 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-5/1/0 880", + "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, + "duration": 0.51724768, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-5/1/0 ingressOctets=2828493131454436,egressOctets=5300224289258473,ingressErrors=11,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-5-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "27c23af3-9d62-4dd8-8a20-ca779f7b5745", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-5/3/0 885", + "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, + "duration": 0.524015526, + "executed": 1692789426, + "history": [ + { + "status": 0, + "executed": 1692783422 + }, + { + "status": 0, + "executed": 1692783722 + }, + { + "status": 0, + "executed": 1692784022 + }, + { + "status": 0, + "executed": 1692784322 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785823 + }, + { + "status": 0, + "executed": 1692786123 + }, + { + "status": 0, + "executed": 1692786424 + }, + { + "status": 0, + "executed": 1692786724 + }, + { + "status": 0, + "executed": 1692787024 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787925 + }, + { + "status": 0, + "executed": 1692788225 + }, + { + "status": 0, + "executed": 1692788525 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789126 + }, + { + "status": 0, + "executed": 1692789426 + } + ], + "issued": 1692789426, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-5/3/0 ingressOctets=13112573736823040,egressOctets=22738983494664243,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789426, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-5-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9b036c09-88d6-4cbd-ba97-8067e0d9a3d5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-7/0/2 1382", + "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, + "duration": 0.458027079, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783498 + }, + { + "status": 0, + "executed": 1692783798 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692784999 + }, + { + "status": 0, + "executed": 1692785299 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786200 + }, + { + "status": 0, + "executed": 1692786500 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787401 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788002 + }, + { + "status": 0, + "executed": 1692788302 + }, + { + "status": 0, + "executed": 1692788602 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-7/0/2 ingressOctets=93747747890298,egressOctets=202883634690239,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-7-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fa92713b-8bea-4cec-b6c7-25caf6617b03", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-7/0/5 1381", + "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, + "duration": 0.45088533, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783498 + }, + { + "status": 0, + "executed": 1692783798 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692784999 + }, + { + "status": 0, + "executed": 1692785299 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786200 + }, + { + "status": 0, + "executed": 1692786500 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787401 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788002 + }, + { + "status": 0, + "executed": 1692788302 + }, + { + "status": 0, + "executed": 1692788602 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-7/0/5 ingressOctets=18739631613252021,egressOctets=11195778363580916,ingressErrors=27,egressErrors=11,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 34312, + "occurrences_watermark": 34312, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-7-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f9452011-fe39-45ec-81b2-bfa29adc0e0e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-7/1/2 1391", + "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, + "duration": 0.445940525, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784621 + }, + { + "status": 0, + "executed": 1692784921 + }, + { + "status": 0, + "executed": 1692785221 + }, + { + "status": 0, + "executed": 1692785521 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786422 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787323 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-7/1/2 ingressOctets=19436382961087398,egressOctets=11214166174318730,ingressErrors=24,egressErrors=13,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34312, + "occurrences_watermark": 34312, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-7-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2511f3a1-1a58-49b8-8957-dc518c503206", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789425 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-7/1/5 1388", + "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, + "duration": 0.604151391, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784095 + }, + { + "status": 0, + "executed": 1692784395 + }, + { + "status": 0, + "executed": 1692784695 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785596 + }, + { + "status": 0, + "executed": 1692785896 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-7/1/5 ingressOctets=19777647127588954,egressOctets=11206571822063408,ingressErrors=35,egressErrors=13,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34312, + "occurrences_watermark": 34312, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-7-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a25c676a-ed6c-4ede-89d2-13a7da364d48", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789500 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-8/0/2 1379", + "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, + "duration": 0.46976941, + "executed": 1692789513, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784109 + }, + { + "status": 0, + "executed": 1692784409 + }, + { + "status": 0, + "executed": 1692784709 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785610 + }, + { + "status": 0, + "executed": 1692785910 + }, + { + "status": 0, + "executed": 1692786211 + }, + { + "status": 0, + "executed": 1692786511 + }, + { + "status": 0, + "executed": 1692786811 + }, + { + "status": 0, + "executed": 1692787111 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787712 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788913 + }, + { + "status": 0, + "executed": 1692789213 + }, + { + "status": 0, + "executed": 1692789513 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-8/0/2 ingressOctets=136940916734470,egressOctets=121855795745937,ingressErrors=9,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789513, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-8-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "af74b3cb-3f95-4c02-9bfd-df2d15641919", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789513 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-8/0/5 1380", + "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, + "duration": 0.416839555, + "executed": 1692789707, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789107 + }, + { + "status": 0, + "executed": 1692789407 + }, + { + "status": 0, + "executed": 1692789707 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-8/0/5 ingressOctets=30137234312194174,egressOctets=46193662707681902,ingressErrors=10,egressErrors=7,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789707, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-8-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5cde4b8e-3e73-4506-87c1-34a0f5af5adf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-8/1/2 1392", + "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, + "duration": 0.486440535, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-8/1/2 ingressOctets=30130228873300870,egressOctets=46205322705413998,ingressErrors=7,egressErrors=6,ingressDiscards=0,egressDiscards=18575\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-8-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b505f97c-070d-40ac-b75e-774d84d04801", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net et-8/1/5 1393", + "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, + "duration": 0.424601293, + "executed": 1692789471, + "history": [ + { + "status": 0, + "executed": 1692783467 + }, + { + "status": 0, + "executed": 1692783767 + }, + { + "status": 0, + "executed": 1692784067 + }, + { + "status": 0, + "executed": 1692784368 + }, + { + "status": 0, + "executed": 1692784668 + }, + { + "status": 0, + "executed": 1692784968 + }, + { + "status": 0, + "executed": 1692785268 + }, + { + "status": 0, + "executed": 1692785569 + }, + { + "status": 0, + "executed": 1692785869 + }, + { + "status": 0, + "executed": 1692786169 + }, + { + "status": 0, + "executed": 1692786469 + }, + { + "status": 0, + "executed": 1692786770 + }, + { + "status": 0, + "executed": 1692787070 + }, + { + "status": 0, + "executed": 1692787370 + }, + { + "status": 0, + "executed": 1692787671 + }, + { + "status": 0, + "executed": 1692787971 + }, + { + "status": 0, + "executed": 1692788271 + }, + { + "status": 0, + "executed": 1692788571 + }, + { + "status": 0, + "executed": 1692788872 + }, + { + "status": 0, + "executed": 1692789172 + }, + { + "status": 0, + "executed": 1692789471 + } + ], + "issued": 1692789471, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=et-8/1/5 ingressOctets=30123653115802641,egressOctets=46195329402609726,ingressErrors=4,egressErrors=8,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789471, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-et-8-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f2c40b5a-97da-48cb-9ff4-2c3f2c642e40", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789472 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/0 607", + "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, + "duration": 0.475385491, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/0 ingressOctets=0,egressOctets=14514013,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4e7be6f2-de07-488e-b75b-915f0ddcb75c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/1 608", + "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, + "duration": 0.510112214, + "executed": 1692789424, + "history": [ + { + "status": 0, + "executed": 1692783420 + }, + { + "status": 0, + "executed": 1692783720 + }, + { + "status": 0, + "executed": 1692784020 + }, + { + "status": 0, + "executed": 1692784320 + }, + { + "status": 0, + "executed": 1692784620 + }, + { + "status": 0, + "executed": 1692784920 + }, + { + "status": 0, + "executed": 1692785220 + }, + { + "status": 0, + "executed": 1692785520 + }, + { + "status": 0, + "executed": 1692785821 + }, + { + "status": 0, + "executed": 1692786121 + }, + { + "status": 0, + "executed": 1692786422 + }, + { + "status": 0, + "executed": 1692786722 + }, + { + "status": 0, + "executed": 1692787022 + }, + { + "status": 0, + "executed": 1692787322 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787923 + }, + { + "status": 0, + "executed": 1692788223 + }, + { + "status": 0, + "executed": 1692788523 + }, + { + "status": 0, + "executed": 1692788823 + }, + { + "status": 0, + "executed": 1692789124 + }, + { + "status": 0, + "executed": 1692789424 + } + ], + "issued": 1692789424, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789424, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1e68a972-1119-4fab-800f-880d8991f16e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789424 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/2 609", + "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, + "duration": 0.48003541, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e21c1639-ab2b-4958-8a6b-ab38c0801c6a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/3 610", + "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, + "duration": 0.446371367, + "executed": 1692789446, + "history": [ + { + "status": 0, + "executed": 1692783441 + }, + { + "status": 0, + "executed": 1692783741 + }, + { + "status": 0, + "executed": 1692784042 + }, + { + "status": 0, + "executed": 1692784342 + }, + { + "status": 0, + "executed": 1692784642 + }, + { + "status": 0, + "executed": 1692784942 + }, + { + "status": 0, + "executed": 1692785243 + }, + { + "status": 0, + "executed": 1692785543 + }, + { + "status": 0, + "executed": 1692785843 + }, + { + "status": 0, + "executed": 1692786144 + }, + { + "status": 0, + "executed": 1692786444 + }, + { + "status": 0, + "executed": 1692786744 + }, + { + "status": 0, + "executed": 1692787044 + }, + { + "status": 0, + "executed": 1692787345 + }, + { + "status": 0, + "executed": 1692787645 + }, + { + "status": 0, + "executed": 1692787945 + }, + { + "status": 0, + "executed": 1692788245 + }, + { + "status": 0, + "executed": 1692788545 + }, + { + "status": 0, + "executed": 1692788846 + }, + { + "status": 0, + "executed": 1692789146 + }, + { + "status": 0, + "executed": 1692789446 + } + ], + "issued": 1692789446, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789446, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "29e062cf-7a36-4ec4-bbe4-64ed0229e6c1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789446 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/4 611", + "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, + "duration": 0.465527205, + "executed": 1692789489, + "history": [ + { + "status": 0, + "executed": 1692783485 + }, + { + "status": 0, + "executed": 1692783785 + }, + { + "status": 0, + "executed": 1692784085 + }, + { + "status": 0, + "executed": 1692784385 + }, + { + "status": 0, + "executed": 1692784685 + }, + { + "status": 0, + "executed": 1692784986 + }, + { + "status": 0, + "executed": 1692785286 + }, + { + "status": 0, + "executed": 1692785586 + }, + { + "status": 0, + "executed": 1692785886 + }, + { + "status": 0, + "executed": 1692786187 + }, + { + "status": 0, + "executed": 1692786487 + }, + { + "status": 0, + "executed": 1692786787 + }, + { + "status": 0, + "executed": 1692787087 + }, + { + "status": 0, + "executed": 1692787388 + }, + { + "status": 0, + "executed": 1692787688 + }, + { + "status": 0, + "executed": 1692787988 + }, + { + "status": 0, + "executed": 1692788289 + }, + { + "status": 0, + "executed": 1692788589 + }, + { + "status": 0, + "executed": 1692788889 + }, + { + "status": 0, + "executed": 1692789189 + }, + { + "status": 0, + "executed": 1692789489 + } + ], + "issued": 1692789489, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789489, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d05f9f30-7ab7-4d07-af66-ee925cffddbd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789489 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/5 627", + "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, + "duration": 0.482702088, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/5 ingressOctets=6021985170,egressOctets=743351550,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "43d19fa2-d1e2-42c4-867e-0e0ca211b69f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/6 635", + "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, + "duration": 0.430766399, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1fc8f3da-d5b7-488b-ac5b-5fb91b37311d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/7 636", + "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, + "duration": 0.451079827, + "executed": 1692789424, + "history": [ + { + "status": 0, + "executed": 1692783420 + }, + { + "status": 0, + "executed": 1692783720 + }, + { + "status": 0, + "executed": 1692784020 + }, + { + "status": 0, + "executed": 1692784320 + }, + { + "status": 0, + "executed": 1692784620 + }, + { + "status": 0, + "executed": 1692784920 + }, + { + "status": 0, + "executed": 1692785220 + }, + { + "status": 0, + "executed": 1692785520 + }, + { + "status": 0, + "executed": 1692785821 + }, + { + "status": 0, + "executed": 1692786121 + }, + { + "status": 0, + "executed": 1692786422 + }, + { + "status": 0, + "executed": 1692786722 + }, + { + "status": 0, + "executed": 1692787022 + }, + { + "status": 0, + "executed": 1692787322 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787923 + }, + { + "status": 0, + "executed": 1692788223 + }, + { + "status": 0, + "executed": 1692788523 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789124 + }, + { + "status": 0, + "executed": 1692789424 + } + ], + "issued": 1692789424, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789424, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "33dba943-a130-4db1-b0f4-62f8a487b2f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789425 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/7.0 1199", + "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, + "duration": 0.510360733, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783475 + }, + { + "status": 0, + "executed": 1692783775 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/7.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2d5296ec-186e-438b-94c0-89deb81f1b86", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/8 645", + "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, + "duration": 0.440456312, + "executed": 1692789440, + "history": [ + { + "status": 0, + "executed": 1692783436 + }, + { + "status": 0, + "executed": 1692783736 + }, + { + "status": 0, + "executed": 1692784036 + }, + { + "status": 0, + "executed": 1692784336 + }, + { + "status": 0, + "executed": 1692784636 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785237 + }, + { + "status": 0, + "executed": 1692785537 + }, + { + "status": 0, + "executed": 1692785837 + }, + { + "status": 0, + "executed": 1692786138 + }, + { + "status": 0, + "executed": 1692786438 + }, + { + "status": 0, + "executed": 1692786738 + }, + { + "status": 0, + "executed": 1692787038 + }, + { + "status": 0, + "executed": 1692787339 + }, + { + "status": 0, + "executed": 1692787639 + }, + { + "status": 0, + "executed": 1692787939 + }, + { + "status": 0, + "executed": 1692788239 + }, + { + "status": 0, + "executed": 1692788539 + }, + { + "status": 0, + "executed": 1692788840 + }, + { + "status": 0, + "executed": 1692789140 + }, + { + "status": 0, + "executed": 1692789440 + } + ], + "issued": 1692789440, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789440, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "833e7b04-6527-416f-9eaf-bce609f8029d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789440 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/2/9 664", + "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, + "duration": 0.456103741, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783477 + }, + { + "status": 0, + "executed": 1692783777 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784378 + }, + { + "status": 0, + "executed": 1692784678 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785579 + }, + { + "status": 0, + "executed": 1692785879 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786780 + }, + { + "status": 0, + "executed": 1692787080 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787681 + }, + { + "status": 0, + "executed": 1692787981 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788882 + }, + { + "status": 0, + "executed": 1692789182 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f0bc417c-7d0b-47c6-9ec9-208c4ab66265", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/0 668", + "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, + "duration": 0.410442287, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/0 ingressOctets=0,egressOctets=286719046,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2939999a-9f69-424b-85e3-385dd70ed58d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/1 669", + "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, + "duration": 0.455645107, + "executed": 1692789446, + "history": [ + { + "status": 0, + "executed": 1692783441 + }, + { + "status": 0, + "executed": 1692783741 + }, + { + "status": 0, + "executed": 1692784042 + }, + { + "status": 0, + "executed": 1692784342 + }, + { + "status": 0, + "executed": 1692784642 + }, + { + "status": 0, + "executed": 1692784942 + }, + { + "status": 0, + "executed": 1692785243 + }, + { + "status": 0, + "executed": 1692785543 + }, + { + "status": 0, + "executed": 1692785843 + }, + { + "status": 0, + "executed": 1692786144 + }, + { + "status": 0, + "executed": 1692786444 + }, + { + "status": 0, + "executed": 1692786744 + }, + { + "status": 0, + "executed": 1692787044 + }, + { + "status": 0, + "executed": 1692787345 + }, + { + "status": 0, + "executed": 1692787645 + }, + { + "status": 0, + "executed": 1692787945 + }, + { + "status": 0, + "executed": 1692788245 + }, + { + "status": 0, + "executed": 1692788545 + }, + { + "status": 0, + "executed": 1692788846 + }, + { + "status": 0, + "executed": 1692789146 + }, + { + "status": 0, + "executed": 1692789446 + } + ], + "issued": 1692789446, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789446, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c3155475-716d-40c0-ad91-067fae3930e4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789446 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3 671", + "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, + "duration": 0.41282273, + "executed": 1692789510, + "history": [ + { + "status": 0, + "executed": 1692783505 + }, + { + "status": 0, + "executed": 1692783805 + }, + { + "status": 0, + "executed": 1692784106 + }, + { + "status": 0, + "executed": 1692784406 + }, + { + "status": 0, + "executed": 1692784706 + }, + { + "status": 0, + "executed": 1692785006 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785607 + }, + { + "status": 0, + "executed": 1692785907 + }, + { + "status": 0, + "executed": 1692786208 + }, + { + "status": 0, + "executed": 1692786508 + }, + { + "status": 0, + "executed": 1692786808 + }, + { + "status": 0, + "executed": 1692787108 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787709 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788910 + }, + { + "status": 0, + "executed": 1692789210 + }, + { + "status": 0, + "executed": 1692789510 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3 ingressOctets=4057613866798,egressOctets=3387075289545,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=258316\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789510, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c21d3b7d-4aea-41d6-8dbc-a80b8880869d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789510 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.102 1080", + "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, + "duration": 0.641175764, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784095 + }, + { + "status": 0, + "executed": 1692784395 + }, + { + "status": 0, + "executed": 1692784695 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785596 + }, + { + "status": 0, + "executed": 1692785896 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.102 ingressOctets=1926078308,egressOctets=761128238,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.102", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f16bfca8-88f7-4003-a411-9903b8a0f81d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789500 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.202 1376", + "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, + "duration": 0.506068129, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783472 + }, + { + "status": 0, + "executed": 1692783772 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786176 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.202 ingressOctets=1928921442,egressOctets=764067468,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.202", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "64f89bb6-f1c9-4d62-a024-29183c24c0cd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.204 1378", + "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, + "duration": 0.475469387, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.204 ingressOctets=1925551356,egressOctets=760786484,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.204", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dc8c600c-e94b-4934-9fa6-e5d2dcca8bc1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.21 753", + "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, + "duration": 0.423618688, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783461 + }, + { + "status": 0, + "executed": 1692783761 + }, + { + "status": 0, + "executed": 1692784061 + }, + { + "status": 0, + "executed": 1692784362 + }, + { + "status": 0, + "executed": 1692784662 + }, + { + "status": 0, + "executed": 1692784962 + }, + { + "status": 0, + "executed": 1692785262 + }, + { + "status": 0, + "executed": 1692785563 + }, + { + "status": 0, + "executed": 1692785863 + }, + { + "status": 0, + "executed": 1692786163 + }, + { + "status": 0, + "executed": 1692786464 + }, + { + "status": 0, + "executed": 1692786764 + }, + { + "status": 0, + "executed": 1692787064 + }, + { + "status": 0, + "executed": 1692787364 + }, + { + "status": 0, + "executed": 1692787665 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788266 + }, + { + "status": 0, + "executed": 1692788566 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789466, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.21 ingressOctets=740680215,egressOctets=416029574,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0c20d312-b703-4223-aea1-7198cededa70", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789467 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.22 754", + "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, + "duration": 0.430173476, + "executed": 1692789467, + "history": [ + { + "status": 0, + "executed": 1692783461 + }, + { + "status": 0, + "executed": 1692783761 + }, + { + "status": 0, + "executed": 1692784062 + }, + { + "status": 0, + "executed": 1692784362 + }, + { + "status": 0, + "executed": 1692784662 + }, + { + "status": 0, + "executed": 1692784962 + }, + { + "status": 0, + "executed": 1692785263 + }, + { + "status": 0, + "executed": 1692785563 + }, + { + "status": 0, + "executed": 1692785863 + }, + { + "status": 0, + "executed": 1692786164 + }, + { + "status": 0, + "executed": 1692786464 + }, + { + "status": 0, + "executed": 1692786764 + }, + { + "status": 0, + "executed": 1692787064 + }, + { + "status": 0, + "executed": 1692787365 + }, + { + "status": 0, + "executed": 1692787665 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788266 + }, + { + "status": 0, + "executed": 1692788566 + }, + { + "status": 0, + "executed": 1692788867 + }, + { + "status": 0, + "executed": 1692789167 + }, + { + "status": 0, + "executed": 1692789467 + } + ], + "issued": 1692789466, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.22 ingressOctets=675104000,egressOctets=432721640,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789467, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a09e5403-0db0-4c30-84f7-7feaa1221da3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789467 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.23 798", + "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, + "duration": 0.447494746, + "executed": 1692789470, + "history": [ + { + "status": 0, + "executed": 1692783465 + }, + { + "status": 0, + "executed": 1692783765 + }, + { + "status": 0, + "executed": 1692784065 + }, + { + "status": 0, + "executed": 1692784366 + }, + { + "status": 0, + "executed": 1692784666 + }, + { + "status": 0, + "executed": 1692784966 + }, + { + "status": 0, + "executed": 1692785266 + }, + { + "status": 0, + "executed": 1692785567 + }, + { + "status": 0, + "executed": 1692785867 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786468 + }, + { + "status": 0, + "executed": 1692786768 + }, + { + "status": 0, + "executed": 1692787068 + }, + { + "status": 0, + "executed": 1692787368 + }, + { + "status": 0, + "executed": 1692787669 + }, + { + "status": 0, + "executed": 1692787969 + }, + { + "status": 0, + "executed": 1692788269 + }, + { + "status": 0, + "executed": 1692788569 + }, + { + "status": 0, + "executed": 1692788870 + }, + { + "status": 0, + "executed": 1692789170 + }, + { + "status": 0, + "executed": 1692789470 + } + ], + "issued": 1692789469, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.23 ingressOctets=826671238,egressOctets=265629544,ingressErrors=0,egressErrors=0,ingressOctetsv6=1448745,egressOctetsv6=1450081,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789470, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4284687d-2fe6-4749-9db3-19b636c50011", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789470 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.24 661", + "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, + "duration": 0.537362974, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.24 ingressOctets=675104680,egressOctets=504689013,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.24", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f635809c-04f6-4c02-9113-245ff6da8dea", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.240 1182", + "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, + "duration": 0.588506438, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.240 ingressOctets=885692269,egressOctets=168536935,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.240", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "53413e06-e54a-43c6-bd5b-7b3379c05423", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.250 831", + "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, + "duration": 0.396158514, + "executed": 1692789716, + "history": [ + { + "status": 0, + "executed": 1692783713 + }, + { + "status": 0, + "executed": 1692784013 + }, + { + "status": 0, + "executed": 1692784313 + }, + { + "status": 0, + "executed": 1692784614 + }, + { + "status": 0, + "executed": 1692784914 + }, + { + "status": 0, + "executed": 1692785214 + }, + { + "status": 0, + "executed": 1692785514 + }, + { + "status": 0, + "executed": 1692785814 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786415 + }, + { + "status": 0, + "executed": 1692786715 + }, + { + "status": 0, + "executed": 1692787015 + }, + { + "status": 0, + "executed": 1692787316 + }, + { + "status": 0, + "executed": 1692787616 + }, + { + "status": 0, + "executed": 1692787916 + }, + { + "status": 0, + "executed": 1692788216 + }, + { + "status": 0, + "executed": 1692788516 + }, + { + "status": 0, + "executed": 1692788817 + }, + { + "status": 0, + "executed": 1692789117 + }, + { + "status": 0, + "executed": 1692789417 + }, + { + "status": 0, + "executed": 1692789716 + } + ], + "issued": 1692789716, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.250 ingressOctets=2728784949,egressOctets=5170104947,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789716, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.250", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ecf83703-a712-4e90-960e-428419d66356", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789717 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.3005 1304", + "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, + "duration": 0.421985998, + "executed": 1692789710, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789710 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.3005 ingressOctets=14170802157,egressOctets=84355684511,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789710, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.3005", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cc5b96b9-f43e-4bad-b567-9ee65cd98b43", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.3018 1122", + "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, + "duration": 0.414891377, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.3018 ingressOctets=673105208,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.3018", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9bff12ad-1b17-41c8-85c4-f7782a5caa15", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.3020 1123", + "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, + "duration": 0.552901812, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.3020 ingressOctets=2069879244,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.3020", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4f3122e9-7edc-4cad-86df-2b2cc2f51311", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.3021 1125", + "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, + "duration": 0.418865348, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789107 + }, + { + "status": 0, + "executed": 1692789407 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.3021 ingressOctets=676454168,egressOctets=1449884947,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.3021", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "85bafd96-d1b5-4b5e-b4fd-920839b0ff4d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.50 660", + "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, + "duration": 0.490993889, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787972 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.50 ingressOctets=3874417923147,egressOctets=3273146654995,ingressErrors=0,egressErrors=0,ingressOctetsv6=2538500958292,egressOctetsv6=962583428867,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.50", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8080b8b5-2c1e-4ef4-a40c-b47779f659be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.550 790", + "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, + "duration": 0.402535016, + "executed": 1692789445, + "history": [ + { + "status": 0, + "executed": 1692783441 + }, + { + "status": 0, + "executed": 1692783741 + }, + { + "status": 0, + "executed": 1692784041 + }, + { + "status": 0, + "executed": 1692784341 + }, + { + "status": 0, + "executed": 1692784642 + }, + { + "status": 0, + "executed": 1692784942 + }, + { + "status": 0, + "executed": 1692785242 + }, + { + "status": 0, + "executed": 1692785543 + }, + { + "status": 0, + "executed": 1692785843 + }, + { + "status": 0, + "executed": 1692786143 + }, + { + "status": 0, + "executed": 1692786444 + }, + { + "status": 0, + "executed": 1692786744 + }, + { + "status": 0, + "executed": 1692787044 + }, + { + "status": 0, + "executed": 1692787344 + }, + { + "status": 0, + "executed": 1692787645 + }, + { + "status": 0, + "executed": 1692787945 + }, + { + "status": 0, + "executed": 1692788245 + }, + { + "status": 0, + "executed": 1692788545 + }, + { + "status": 0, + "executed": 1692788845 + }, + { + "status": 0, + "executed": 1692789145 + }, + { + "status": 0, + "executed": 1692789445 + } + ], + "issued": 1692789445, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.550 ingressOctets=0,egressOctets=1937103950,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789445, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.550", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b3af4c4b-a904-47cb-a0d3-d4eb5cc396ed", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789446 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.7 807", + "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, + "duration": 0.434860797, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.7 ingressOctets=2400159743,egressOctets=1725388425,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "863b76f7-6c6c-459e-9b4b-1272129bf1cc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.72 758", + "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, + "duration": 0.469431727, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.72 ingressOctets=675105188,egressOctets=1839470230,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.72", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e04cc98e-110e-4c5f-bf03-83427afe6848", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.75 759", + "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, + "duration": 0.479583342, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783496 + }, + { + "status": 0, + "executed": 1692783796 + }, + { + "status": 0, + "executed": 1692784097 + }, + { + "status": 0, + "executed": 1692784397 + }, + { + "status": 0, + "executed": 1692784697 + }, + { + "status": 0, + "executed": 1692784997 + }, + { + "status": 0, + "executed": 1692785297 + }, + { + "status": 0, + "executed": 1692785598 + }, + { + "status": 0, + "executed": 1692785898 + }, + { + "status": 0, + "executed": 1692786198 + }, + { + "status": 0, + "executed": 1692786498 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787099 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787700 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788901 + }, + { + "status": 0, + "executed": 1692789201 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.75 ingressOctets=675105088,egressOctets=1898064766,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.75", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3f92ede4-f6bd-4840-99ca-aa08bad368b2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.79 760", + "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, + "duration": 0.46977179, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.79 ingressOctets=675104236,egressOctets=1849660185,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.79", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c514bbc3-42f6-4a0f-8289-b8f3d6429c1b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.888 933", + "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, + "duration": 0.532615687, + "executed": 1692789499, + "history": [ + { + "status": 0, + "executed": 1692783493 + }, + { + "status": 0, + "executed": 1692783793 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784994 + }, + { + "status": 0, + "executed": 1692785294 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787096 + }, + { + "status": 0, + "executed": 1692787397 + }, + { + "status": 0, + "executed": 1692787697 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788298 + }, + { + "status": 0, + "executed": 1692788598 + }, + { + "status": 0, + "executed": 1692788898 + }, + { + "status": 0, + "executed": 1692789199 + }, + { + "status": 0, + "executed": 1692789499 + } + ], + "issued": 1692789498, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.888 ingressOctets=24044471411,egressOctets=2563581520,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789499, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.888", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2922fce7-544d-47dd-87b4-28b46f6d51aa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789499 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.91 764", + "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, + "duration": 0.525464336, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783426 + }, + { + "status": 0, + "executed": 1692783726 + }, + { + "status": 0, + "executed": 1692784026 + }, + { + "status": 0, + "executed": 1692784326 + }, + { + "status": 0, + "executed": 1692784627 + }, + { + "status": 0, + "executed": 1692784927 + }, + { + "status": 0, + "executed": 1692785227 + }, + { + "status": 0, + "executed": 1692785527 + }, + { + "status": 0, + "executed": 1692785827 + }, + { + "status": 0, + "executed": 1692786128 + }, + { + "status": 0, + "executed": 1692786428 + }, + { + "status": 0, + "executed": 1692786728 + }, + { + "status": 0, + "executed": 1692787028 + }, + { + "status": 0, + "executed": 1692787329 + }, + { + "status": 0, + "executed": 1692787629 + }, + { + "status": 0, + "executed": 1692787929 + }, + { + "status": 0, + "executed": 1692788229 + }, + { + "status": 0, + "executed": 1692788529 + }, + { + "status": 0, + "executed": 1692788830 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.91 ingressOctets=675102808,egressOctets=1795616268,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.91", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f8d3c584-16d2-458d-a67a-abce63dc9211", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/3.991 977", + "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, + "duration": 0.488882135, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783428 + }, + { + "status": 0, + "executed": 1692783728 + }, + { + "status": 0, + "executed": 1692784029 + }, + { + "status": 0, + "executed": 1692784329 + }, + { + "status": 0, + "executed": 1692784629 + }, + { + "status": 0, + "executed": 1692784929 + }, + { + "status": 0, + "executed": 1692785229 + }, + { + "status": 0, + "executed": 1692785529 + }, + { + "status": 0, + "executed": 1692785830 + }, + { + "status": 0, + "executed": 1692786130 + }, + { + "status": 0, + "executed": 1692786431 + }, + { + "status": 0, + "executed": 1692786731 + }, + { + "status": 0, + "executed": 1692787031 + }, + { + "status": 0, + "executed": 1692787331 + }, + { + "status": 0, + "executed": 1692787631 + }, + { + "status": 0, + "executed": 1692787932 + }, + { + "status": 0, + "executed": 1692788232 + }, + { + "status": 0, + "executed": 1692788532 + }, + { + "status": 0, + "executed": 1692788832 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/3.991 ingressOctets=123539036902,egressOctets=4194680267,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-3.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d6022f85-1015-4a62-9a87-22ed90c56c5c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/4 672", + "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, + "duration": 0.497425444, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/4 ingressOctets=0,egressOctets=243600654,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c740dcce-1f28-4e3c-ba68-8748b5e372f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/5 673", + "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, + "duration": 0.424280564, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b4884028-83f4-4371-a9e3-72dfe711b1d7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/6 676", + "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, + "duration": 0.440164413, + "executed": 1692789469, + "history": [ + { + "status": 0, + "executed": 1692783464 + }, + { + "status": 0, + "executed": 1692783764 + }, + { + "status": 0, + "executed": 1692784064 + }, + { + "status": 0, + "executed": 1692784365 + }, + { + "status": 0, + "executed": 1692784665 + }, + { + "status": 0, + "executed": 1692784965 + }, + { + "status": 0, + "executed": 1692785265 + }, + { + "status": 0, + "executed": 1692785566 + }, + { + "status": 0, + "executed": 1692785866 + }, + { + "status": 0, + "executed": 1692786166 + }, + { + "status": 0, + "executed": 1692786467 + }, + { + "status": 0, + "executed": 1692786767 + }, + { + "status": 0, + "executed": 1692787067 + }, + { + "status": 0, + "executed": 1692787367 + }, + { + "status": 0, + "executed": 1692787668 + }, + { + "status": 0, + "executed": 1692787968 + }, + { + "status": 0, + "executed": 1692788268 + }, + { + "status": 0, + "executed": 1692788568 + }, + { + "status": 0, + "executed": 1692788869 + }, + { + "status": 0, + "executed": 1692789169 + }, + { + "status": 0, + "executed": 1692789469 + } + ], + "issued": 1692789468, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/6 ingressOctets=376705072,egressOctets=331361598,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789469, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b41d9957-c3be-485a-8e82-704385f9f6f0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789469 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/7 677", + "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, + "duration": 0.443957326, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783705 + }, + { + "status": 0, + "executed": 1692784005 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784606 + }, + { + "status": 0, + "executed": 1692784906 + }, + { + "status": 0, + "executed": 1692785206 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786107 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/7 ingressOctets=331348107,egressOctets=389318790,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c9b721f3-5320-45d1-ac9c-2a2db74c679c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/7.1000 1005", + "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, + "duration": 0.404128949, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783491 + }, + { + "status": 0, + "executed": 1692783791 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784992 + }, + { + "status": 0, + "executed": 1692785292 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786193 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/7.1000 ingressOctets=53230412,egressOctets=53242024,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-7.1000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "989a80e2-fb6a-47d5-bc45-af5e682912fd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/7.1112 1052", + "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, + "duration": 0.421530214, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784617 + }, + { + "status": 0, + "executed": 1692784917 + }, + { + "status": 0, + "executed": 1692785217 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787319 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/7.1112 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-7.1112", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "de0b27f1-7f90-4de5-b00b-95bc004072b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/7.1113 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, + "duration": 0.431997105, + "executed": 1692789717, + "history": [ + { + "status": 0, + "executed": 1692783713 + }, + { + "status": 0, + "executed": 1692784013 + }, + { + "status": 0, + "executed": 1692784313 + }, + { + "status": 0, + "executed": 1692784614 + }, + { + "status": 0, + "executed": 1692784914 + }, + { + "status": 0, + "executed": 1692785214 + }, + { + "status": 0, + "executed": 1692785514 + }, + { + "status": 0, + "executed": 1692785814 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786415 + }, + { + "status": 0, + "executed": 1692786715 + }, + { + "status": 0, + "executed": 1692787015 + }, + { + "status": 0, + "executed": 1692787316 + }, + { + "status": 0, + "executed": 1692787616 + }, + { + "status": 0, + "executed": 1692787916 + }, + { + "status": 0, + "executed": 1692788216 + }, + { + "status": 0, + "executed": 1692788516 + }, + { + "status": 0, + "executed": 1692788817 + }, + { + "status": 0, + "executed": 1692789117 + }, + { + "status": 0, + "executed": 1692789417 + }, + { + "status": 0, + "executed": 1692789717 + } + ], + "issued": 1692789716, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/7.1113 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789717, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-7.1113", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "61623de6-0db3-477c-a1b5-d9cc114ccb3e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789717 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/7.1114 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, + "duration": 0.410284672, + "executed": 1692789446, + "history": [ + { + "status": 0, + "executed": 1692783441 + }, + { + "status": 0, + "executed": 1692783741 + }, + { + "status": 0, + "executed": 1692784042 + }, + { + "status": 0, + "executed": 1692784342 + }, + { + "status": 0, + "executed": 1692784642 + }, + { + "status": 0, + "executed": 1692784942 + }, + { + "status": 0, + "executed": 1692785243 + }, + { + "status": 0, + "executed": 1692785543 + }, + { + "status": 0, + "executed": 1692785843 + }, + { + "status": 0, + "executed": 1692786144 + }, + { + "status": 0, + "executed": 1692786444 + }, + { + "status": 0, + "executed": 1692786744 + }, + { + "status": 0, + "executed": 1692787044 + }, + { + "status": 0, + "executed": 1692787345 + }, + { + "status": 0, + "executed": 1692787645 + }, + { + "status": 0, + "executed": 1692787945 + }, + { + "status": 0, + "executed": 1692788245 + }, + { + "status": 0, + "executed": 1692788545 + }, + { + "status": 0, + "executed": 1692788846 + }, + { + "status": 0, + "executed": 1692789146 + }, + { + "status": 0, + "executed": 1692789446 + } + ], + "issued": 1692789446, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/7.1114 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789446, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-7.1114", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e5b34371-8ab2-4531-b746-716221fdafe9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789446 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/7.1115 1060", + "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, + "duration": 0.570399584, + "executed": 1692789434, + "history": [ + { + "status": 0, + "executed": 1692783431 + }, + { + "status": 0, + "executed": 1692783731 + }, + { + "status": 0, + "executed": 1692784031 + }, + { + "status": 0, + "executed": 1692784331 + }, + { + "status": 0, + "executed": 1692784631 + }, + { + "status": 0, + "executed": 1692784931 + }, + { + "status": 0, + "executed": 1692785231 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785832 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786733 + }, + { + "status": 0, + "executed": 1692787033 + }, + { + "status": 0, + "executed": 1692787333 + }, + { + "status": 0, + "executed": 1692787633 + }, + { + "status": 0, + "executed": 1692787934 + }, + { + "status": 0, + "executed": 1692788234 + }, + { + "status": 0, + "executed": 1692788534 + }, + { + "status": 0, + "executed": 1692788834 + }, + { + "status": 0, + "executed": 1692789134 + }, + { + "status": 0, + "executed": 1692789434 + } + ], + "issued": 1692789434, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/7.1115 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789434, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-7.1115", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc00aeb6-3373-4b8b-be30-301f47afce5b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/7.79 1449", + "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, + "duration": 0.527650071, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784621 + }, + { + "status": 0, + "executed": 1692784921 + }, + { + "status": 0, + "executed": 1692785221 + }, + { + "status": 0, + "executed": 1692785521 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787323 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/7.79 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 11777, + "occurrences_watermark": 11777, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-7.79", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ce03d46d-9205-4f21-8a84-42fd994e54d8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789425 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/8 678", + "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, + "duration": 0.463577105, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784113 + }, + { + "status": 0, + "executed": 1692784413 + }, + { + "status": 0, + "executed": 1692784713 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f89049c-3696-4684-b5b6-9144d0a5fe8f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-0/3/9 679", + "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, + "duration": 0.439760314, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783460 + }, + { + "status": 0, + "executed": 1692783760 + }, + { + "status": 0, + "executed": 1692784060 + }, + { + "status": 0, + "executed": 1692784361 + }, + { + "status": 0, + "executed": 1692784661 + }, + { + "status": 0, + "executed": 1692784961 + }, + { + "status": 0, + "executed": 1692785261 + }, + { + "status": 0, + "executed": 1692785562 + }, + { + "status": 0, + "executed": 1692785862 + }, + { + "status": 0, + "executed": 1692786162 + }, + { + "status": 0, + "executed": 1692786462 + }, + { + "status": 0, + "executed": 1692786763 + }, + { + "status": 0, + "executed": 1692787063 + }, + { + "status": 0, + "executed": 1692787363 + }, + { + "status": 0, + "executed": 1692787664 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788266 + }, + { + "status": 0, + "executed": 1692788566 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789466, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-0/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-0-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c5f02fe1-b4ee-4b9e-a08c-5297486c8cca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789466 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/0 726", + "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, + "duration": 0.43317179, + "executed": 1692789438, + "history": [ + { + "status": 0, + "executed": 1692783435 + }, + { + "status": 0, + "executed": 1692783735 + }, + { + "status": 0, + "executed": 1692784035 + }, + { + "status": 0, + "executed": 1692784335 + }, + { + "status": 0, + "executed": 1692784635 + }, + { + "status": 0, + "executed": 1692784935 + }, + { + "status": 0, + "executed": 1692785235 + }, + { + "status": 0, + "executed": 1692785536 + }, + { + "status": 0, + "executed": 1692785836 + }, + { + "status": 0, + "executed": 1692786136 + }, + { + "status": 0, + "executed": 1692786437 + }, + { + "status": 0, + "executed": 1692786737 + }, + { + "status": 0, + "executed": 1692787037 + }, + { + "status": 0, + "executed": 1692787337 + }, + { + "status": 0, + "executed": 1692787638 + }, + { + "status": 0, + "executed": 1692787938 + }, + { + "status": 0, + "executed": 1692788238 + }, + { + "status": 0, + "executed": 1692788538 + }, + { + "status": 0, + "executed": 1692788838 + }, + { + "status": 0, + "executed": 1692789138 + }, + { + "status": 0, + "executed": 1692789438 + } + ], + "issued": 1692789438, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/0 ingressOctets=556120794,egressOctets=166509082180,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789438, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e40be509-9670-4116-a79d-71b315546df9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789439 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/1 743", + "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, + "duration": 0.461766282, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787972 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/1 ingressOctets=548911080,egressOctets=269471250,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9bffb18b-af21-4269-a641-c83f91b75a01", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/2 808", + "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, + "duration": 0.502097695, + "executed": 1692789441, + "history": [ + { + "status": 0, + "executed": 1692783437 + }, + { + "status": 0, + "executed": 1692783737 + }, + { + "status": 0, + "executed": 1692784037 + }, + { + "status": 0, + "executed": 1692784337 + }, + { + "status": 0, + "executed": 1692784637 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785238 + }, + { + "status": 0, + "executed": 1692785538 + }, + { + "status": 0, + "executed": 1692785838 + }, + { + "status": 0, + "executed": 1692786139 + }, + { + "status": 0, + "executed": 1692786439 + }, + { + "status": 0, + "executed": 1692786739 + }, + { + "status": 0, + "executed": 1692787039 + }, + { + "status": 0, + "executed": 1692787340 + }, + { + "status": 0, + "executed": 1692787640 + }, + { + "status": 0, + "executed": 1692787940 + }, + { + "status": 0, + "executed": 1692788240 + }, + { + "status": 0, + "executed": 1692788540 + }, + { + "status": 0, + "executed": 1692788841 + }, + { + "status": 0, + "executed": 1692789141 + }, + { + "status": 0, + "executed": 1692789441 + } + ], + "issued": 1692789441, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789441, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "416417d4-cfb6-4bbe-88a5-d6515b95b0f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789441 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/2.0 1066", + "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, + "duration": 0.498799438, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/2.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4ce227ac-ee4f-4640-966a-cf684a42e30e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/3 832", + "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, + "duration": 0.481704957, + "executed": 1692789452, + "history": [ + { + "status": 0, + "executed": 1692783447 + }, + { + "status": 0, + "executed": 1692783747 + }, + { + "status": 0, + "executed": 1692784048 + }, + { + "status": 0, + "executed": 1692784348 + }, + { + "status": 0, + "executed": 1692784648 + }, + { + "status": 0, + "executed": 1692784948 + }, + { + "status": 0, + "executed": 1692785249 + }, + { + "status": 0, + "executed": 1692785549 + }, + { + "status": 0, + "executed": 1692785849 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786450 + }, + { + "status": 0, + "executed": 1692786750 + }, + { + "status": 0, + "executed": 1692787050 + }, + { + "status": 0, + "executed": 1692787351 + }, + { + "status": 0, + "executed": 1692787651 + }, + { + "status": 0, + "executed": 1692787951 + }, + { + "status": 0, + "executed": 1692788251 + }, + { + "status": 0, + "executed": 1692788551 + }, + { + "status": 0, + "executed": 1692788852 + }, + { + "status": 0, + "executed": 1692789152 + }, + { + "status": 0, + "executed": 1692789452 + } + ], + "issued": 1692789452, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/3 ingressOctets=85137300403,egressOctets=84714001385,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789452, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b370e045-b744-420f-9262-d1a1d62947d1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789452 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/4 833", + "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, + "duration": 0.546052004, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786157 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aa251e75-0dfd-41a1-9d93-ab6ffd840e34", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/5 840", + "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, + "duration": 0.455735519, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6b56f457-b5dd-4d90-a2c7-cc1d3e70a09c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/6 841", + "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, + "duration": 0.562836103, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "125bac87-26f2-40ba-8a39-8b0b8ca69cc1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/7 842", + "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, + "duration": 0.479666031, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783454 + }, + { + "status": 0, + "executed": 1692783754 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784355 + }, + { + "status": 0, + "executed": 1692784655 + }, + { + "status": 0, + "executed": 1692784955 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785556 + }, + { + "status": 0, + "executed": 1692785856 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786457 + }, + { + "status": 0, + "executed": 1692786757 + }, + { + "status": 0, + "executed": 1692787057 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787658 + }, + { + "status": 0, + "executed": 1692787958 + }, + { + "status": 0, + "executed": 1692788258 + }, + { + "status": 0, + "executed": 1692788558 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2ed44d88-1463-4fd8-bd0b-00b62e44f1dc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/8 843", + "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, + "duration": 0.438015759, + "executed": 1692789439, + "history": [ + { + "status": 0, + "executed": 1692783435 + }, + { + "status": 0, + "executed": 1692783735 + }, + { + "status": 0, + "executed": 1692784035 + }, + { + "status": 0, + "executed": 1692784335 + }, + { + "status": 0, + "executed": 1692784636 + }, + { + "status": 0, + "executed": 1692784936 + }, + { + "status": 0, + "executed": 1692785236 + }, + { + "status": 0, + "executed": 1692785536 + }, + { + "status": 0, + "executed": 1692785836 + }, + { + "status": 0, + "executed": 1692786137 + }, + { + "status": 0, + "executed": 1692786437 + }, + { + "status": 0, + "executed": 1692786737 + }, + { + "status": 0, + "executed": 1692787037 + }, + { + "status": 0, + "executed": 1692787338 + }, + { + "status": 0, + "executed": 1692787638 + }, + { + "status": 0, + "executed": 1692787938 + }, + { + "status": 0, + "executed": 1692788238 + }, + { + "status": 0, + "executed": 1692788538 + }, + { + "status": 0, + "executed": 1692788839 + }, + { + "status": 0, + "executed": 1692789139 + }, + { + "status": 0, + "executed": 1692789439 + } + ], + "issued": 1692789439, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789439, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3583d4a3-379e-4c0e-95c0-4cd5076db7ff", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789439 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/2/9 844", + "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, + "duration": 0.402155891, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784346 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4ae98598-3518-4bcc-a535-3fb9f49162b6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/0 845", + "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, + "duration": 0.416104411, + "executed": 1692789462, + "history": [ + { + "status": 0, + "executed": 1692783457 + }, + { + "status": 0, + "executed": 1692783757 + }, + { + "status": 0, + "executed": 1692784058 + }, + { + "status": 0, + "executed": 1692784358 + }, + { + "status": 0, + "executed": 1692784658 + }, + { + "status": 0, + "executed": 1692784958 + }, + { + "status": 0, + "executed": 1692785259 + }, + { + "status": 0, + "executed": 1692785559 + }, + { + "status": 0, + "executed": 1692785859 + }, + { + "status": 0, + "executed": 1692786160 + }, + { + "status": 0, + "executed": 1692786460 + }, + { + "status": 0, + "executed": 1692786760 + }, + { + "status": 0, + "executed": 1692787060 + }, + { + "status": 0, + "executed": 1692787361 + }, + { + "status": 0, + "executed": 1692787661 + }, + { + "status": 0, + "executed": 1692787961 + }, + { + "status": 0, + "executed": 1692788262 + }, + { + "status": 0, + "executed": 1692788562 + }, + { + "status": 0, + "executed": 1692788862 + }, + { + "status": 0, + "executed": 1692789162 + }, + { + "status": 0, + "executed": 1692789462 + } + ], + "issued": 1692789462, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789462, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7a8ba493-1f2c-4767-940e-8c98ad035e24", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789463 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/1 846", + "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, + "duration": 0.424752356, + "executed": 1692789509, + "history": [ + { + "status": 0, + "executed": 1692783504 + }, + { + "status": 0, + "executed": 1692783804 + }, + { + "status": 0, + "executed": 1692784105 + }, + { + "status": 0, + "executed": 1692784405 + }, + { + "status": 0, + "executed": 1692784705 + }, + { + "status": 0, + "executed": 1692785005 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785606 + }, + { + "status": 0, + "executed": 1692785906 + }, + { + "status": 0, + "executed": 1692786207 + }, + { + "status": 0, + "executed": 1692786507 + }, + { + "status": 0, + "executed": 1692786807 + }, + { + "status": 0, + "executed": 1692787107 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787708 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788909 + }, + { + "status": 0, + "executed": 1692789209 + }, + { + "status": 0, + "executed": 1692789509 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789509, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6945262b-ff32-4042-a595-2711de0bf0ac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789510 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/2 847", + "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, + "duration": 0.500670416, + "executed": 1692789444, + "history": [ + { + "status": 0, + "executed": 1692783439 + }, + { + "status": 0, + "executed": 1692783739 + }, + { + "status": 0, + "executed": 1692784039 + }, + { + "status": 0, + "executed": 1692784339 + }, + { + "status": 0, + "executed": 1692784640 + }, + { + "status": 0, + "executed": 1692784940 + }, + { + "status": 0, + "executed": 1692785241 + }, + { + "status": 0, + "executed": 1692785541 + }, + { + "status": 0, + "executed": 1692785841 + }, + { + "status": 0, + "executed": 1692786142 + }, + { + "status": 0, + "executed": 1692786442 + }, + { + "status": 0, + "executed": 1692786742 + }, + { + "status": 0, + "executed": 1692787042 + }, + { + "status": 0, + "executed": 1692787343 + }, + { + "status": 0, + "executed": 1692787643 + }, + { + "status": 0, + "executed": 1692787943 + }, + { + "status": 0, + "executed": 1692788243 + }, + { + "status": 0, + "executed": 1692788543 + }, + { + "status": 0, + "executed": 1692788844 + }, + { + "status": 0, + "executed": 1692789144 + }, + { + "status": 0, + "executed": 1692789444 + } + ], + "issued": 1692789444, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789444, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a68ae3bd-429d-432f-97d4-6d2575563e55", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789444 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/3 848", + "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, + "duration": 0.428410278, + "executed": 1692789454, + "history": [ + { + "status": 0, + "executed": 1692783449 + }, + { + "status": 0, + "executed": 1692783749 + }, + { + "status": 0, + "executed": 1692784050 + }, + { + "status": 0, + "executed": 1692784350 + }, + { + "status": 0, + "executed": 1692784650 + }, + { + "status": 0, + "executed": 1692784950 + }, + { + "status": 0, + "executed": 1692785251 + }, + { + "status": 0, + "executed": 1692785551 + }, + { + "status": 0, + "executed": 1692785851 + }, + { + "status": 0, + "executed": 1692786152 + }, + { + "status": 0, + "executed": 1692786452 + }, + { + "status": 0, + "executed": 1692786752 + }, + { + "status": 0, + "executed": 1692787052 + }, + { + "status": 0, + "executed": 1692787353 + }, + { + "status": 0, + "executed": 1692787653 + }, + { + "status": 0, + "executed": 1692787953 + }, + { + "status": 0, + "executed": 1692788253 + }, + { + "status": 0, + "executed": 1692788553 + }, + { + "status": 0, + "executed": 1692788854 + }, + { + "status": 0, + "executed": 1692789154 + }, + { + "status": 0, + "executed": 1692789454 + } + ], + "issued": 1692789454, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789454, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "501ed887-754f-40b0-91af-6c7d659c2959", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789454 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/4 849", + "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, + "duration": 0.436252562, + "executed": 1692789721, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785818 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786719 + }, + { + "status": 0, + "executed": 1692787019 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787920 + }, + { + "status": 0, + "executed": 1692788220 + }, + { + "status": 0, + "executed": 1692788520 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789121 + }, + { + "status": 0, + "executed": 1692789421 + }, + { + "status": 0, + "executed": 1692789721 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789721, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b25c2905-e196-496b-a299-a466ac8d7fde", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/5 857", + "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, + "duration": 0.435073554, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786447 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "779e8dcc-39de-456a-9cea-d10f9c799d15", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/6 861", + "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, + "duration": 0.504009768, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783475 + }, + { + "status": 0, + "executed": 1692783775 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4b808ce0-2c45-4d8f-be0d-f39203254b32", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/7 873", + "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, + "duration": 0.46311434, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5c585616-db0f-41c3-b653-1bf3c31f515e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/8 890", + "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, + "duration": 0.485714967, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "64269f53-01af-404b-b5dd-29abc30f6e74", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net ge-9/3/9 891", + "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, + "duration": 0.427317895, + "executed": 1692789491, + "history": [ + { + "status": 0, + "executed": 1692783487 + }, + { + "status": 0, + "executed": 1692783787 + }, + { + "status": 0, + "executed": 1692784087 + }, + { + "status": 0, + "executed": 1692784387 + }, + { + "status": 0, + "executed": 1692784687 + }, + { + "status": 0, + "executed": 1692784988 + }, + { + "status": 0, + "executed": 1692785288 + }, + { + "status": 0, + "executed": 1692785588 + }, + { + "status": 0, + "executed": 1692785888 + }, + { + "status": 0, + "executed": 1692786189 + }, + { + "status": 0, + "executed": 1692786489 + }, + { + "status": 0, + "executed": 1692786789 + }, + { + "status": 0, + "executed": 1692787089 + }, + { + "status": 0, + "executed": 1692787390 + }, + { + "status": 0, + "executed": 1692787690 + }, + { + "status": 0, + "executed": 1692787990 + }, + { + "status": 0, + "executed": 1692788291 + }, + { + "status": 0, + "executed": 1692788591 + }, + { + "status": 0, + "executed": 1692788891 + }, + { + "status": 0, + "executed": 1692789191 + }, + { + "status": 0, + "executed": 1692789491 + } + ], + "issued": 1692789491, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=ge-9/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789491, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-ge-9-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0277567c-0170-4028-a992-5be6d7909420", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789491 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net gr-11/1/0.0 965", + "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, + "duration": 0.479433188, + "executed": 1692789497, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787095 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787696 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788897 + }, + { + "status": 0, + "executed": 1692789197 + }, + { + "status": 0, + "executed": 1692789497 + } + ], + "issued": 1692789497, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=gr-11/1/0.0 ingressOctets=241960772,egressOctets=2327077725,ingressErrors=0,egressErrors=0,ingressOctetsv6=5084,egressOctetsv6=695086102,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789497, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-gr-11-1-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d1ae1f17-4e27-41f5-8011-217571e454b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net gr-11/1/0.1 1102", + "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, + "duration": 0.473397824, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=gr-11/1/0.1 ingressOctets=757323,egressOctets=12000865,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-gr-11-1-0.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c3c618b6-ea98-4086-b08f-b9b767873b6e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net irb.888 1170", + "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, + "duration": 0.471420003, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783450 + }, + { + "status": 0, + "executed": 1692783750 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784351 + }, + { + "status": 0, + "executed": 1692784651 + }, + { + "status": 0, + "executed": 1692784951 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785552 + }, + { + "status": 0, + "executed": 1692785852 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786453 + }, + { + "status": 0, + "executed": 1692786753 + }, + { + "status": 0, + "executed": 1692787053 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787654 + }, + { + "status": 0, + "executed": 1692787954 + }, + { + "status": 0, + "executed": 1692788254 + }, + { + "status": 0, + "executed": 1692788554 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=irb.888 ingressOctets=18945158673,egressOctets=2560691524,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-irb.888", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fa294d53-5e62-4039-86cf-8cb7d3230ee7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789455 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net irb.999 797", + "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, + "duration": 0.408122126, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=irb.999 ingressOctets=5931106334,egressOctets=458126615,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-irb.999", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a52abea2-969a-4a1a-b512-f5830012d05f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net lt-11/1/0 904", + "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, + "duration": 0.436833992, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=lt-11/1/0 ingressOctets=12948415071946,egressOctets=12955569270529,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-lt-11-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "63032889-0681-4f8d-9eff-bc83b648b7f5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net lt-11/1/0.16 1112", + "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, + "duration": 0.439779257, + "executed": 1692789463, + "history": [ + { + "status": 0, + "executed": 1692783458 + }, + { + "status": 0, + "executed": 1692783758 + }, + { + "status": 0, + "executed": 1692784058 + }, + { + "status": 0, + "executed": 1692784358 + }, + { + "status": 0, + "executed": 1692784659 + }, + { + "status": 0, + "executed": 1692784959 + }, + { + "status": 0, + "executed": 1692785259 + }, + { + "status": 0, + "executed": 1692785560 + }, + { + "status": 0, + "executed": 1692785860 + }, + { + "status": 0, + "executed": 1692786160 + }, + { + "status": 0, + "executed": 1692786460 + }, + { + "status": 0, + "executed": 1692786761 + }, + { + "status": 0, + "executed": 1692787061 + }, + { + "status": 0, + "executed": 1692787361 + }, + { + "status": 0, + "executed": 1692787662 + }, + { + "status": 0, + "executed": 1692787963 + }, + { + "status": 0, + "executed": 1692788262 + }, + { + "status": 0, + "executed": 1692788562 + }, + { + "status": 0, + "executed": 1692788863 + }, + { + "status": 0, + "executed": 1692789163 + }, + { + "status": 0, + "executed": 1692789463 + } + ], + "issued": 1692789463, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=lt-11/1/0.16 ingressOctets=5893207658070,egressOctets=7062128299411,ingressErrors=0,egressErrors=0,ingressOctetsv6=2707305370778,egressOctetsv6=90492108504,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789463, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-lt-11-1-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7d53bee5-3a53-4838-9cfd-5c8367e5e2c0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789463 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net lt-11/1/0.61 1113", + "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, + "duration": 0.429742642, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=lt-11/1/0.61 ingressOctets=7055190641508,egressOctets=5893312583706,ingressErrors=0,egressErrors=0,ingressOctetsv6=129595695877,egressOctetsv6=2707965987662,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-lt-11-1-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3ed3e646-8946-4b18-b99a-c5f77f2fb2b6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net so-1/2/0 934", + "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, + "duration": 0.459497199, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=so-1/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-so-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "66caa4e1-57c4-4381-94a9-4806aa7a94ca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net so-1/2/1 935", + "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, + "duration": 0.464482994, + "executed": 1692789452, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784048 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785249 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787351 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788852 + }, + { + "status": 0, + "executed": 1692789152 + }, + { + "status": 0, + "executed": 1692789452 + } + ], + "issued": 1692789452, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=so-1/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789452, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-so-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f5e263a0-d01a-4f6c-9a8d-1ac15e83cb19", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net so-1/2/2 936", + "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, + "duration": 0.46056541, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783490 + }, + { + "status": 0, + "executed": 1692783790 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784991 + }, + { + "status": 0, + "executed": 1692785291 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787393 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787994 + }, + { + "status": 0, + "executed": 1692788294 + }, + { + "status": 0, + "executed": 1692788594 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789494, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=so-1/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-so-1-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fe711868-922f-4304-beb5-378abf3a23a8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net so-1/2/3 937", + "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, + "duration": 0.423950764, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=so-1/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-so-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b26acccc-f95c-4da4-a92e-04aa4541f9c7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-0/0/0 588", + "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, + "duration": 0.516287975, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783475 + }, + { + "status": 0, + "executed": 1692783775 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-0/0/0 ingressOctets=2939060489008274,egressOctets=3026759317838077,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=2482484\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "51665eef-7445-458b-9eac-baa112f3a036", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-0/0/1 589", + "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, + "duration": 0.480157934, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783450 + }, + { + "status": 0, + "executed": 1692783750 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784351 + }, + { + "status": 0, + "executed": 1692784651 + }, + { + "status": 0, + "executed": 1692784951 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785552 + }, + { + "status": 0, + "executed": 1692785852 + }, + { + "status": 0, + "executed": 1692786152 + }, + { + "status": 0, + "executed": 1692786453 + }, + { + "status": 0, + "executed": 1692786753 + }, + { + "status": 0, + "executed": 1692787053 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787654 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-0/0/1 ingressOctets=1466118286206945,egressOctets=197289039188648,ingressErrors=4,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7e293d67-1215-4689-8e50-ea8e7ab2bd8e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-0/1/1 591", + "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, + "duration": 0.451685294, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-0/1/1 ingressOctets=373681121108,egressOctets=763888732703,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b82f6062-805c-48ce-bc49-a90dcce5effe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-1/0/0 568", + "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, + "duration": 0.459298777, + "executed": 1692789432, + "history": [ + { + "status": 0, + "executed": 1692783426 + }, + { + "status": 0, + "executed": 1692783726 + }, + { + "status": 0, + "executed": 1692784026 + }, + { + "status": 0, + "executed": 1692784326 + }, + { + "status": 0, + "executed": 1692784627 + }, + { + "status": 0, + "executed": 1692784927 + }, + { + "status": 0, + "executed": 1692785227 + }, + { + "status": 0, + "executed": 1692785527 + }, + { + "status": 0, + "executed": 1692785827 + }, + { + "status": 0, + "executed": 1692786128 + }, + { + "status": 0, + "executed": 1692786428 + }, + { + "status": 0, + "executed": 1692786728 + }, + { + "status": 0, + "executed": 1692787028 + }, + { + "status": 0, + "executed": 1692787329 + }, + { + "status": 0, + "executed": 1692787629 + }, + { + "status": 0, + "executed": 1692787929 + }, + { + "status": 0, + "executed": 1692788229 + }, + { + "status": 0, + "executed": 1692788529 + }, + { + "status": 0, + "executed": 1692788830 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789432 + } + ], + "issued": 1692789432, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-1/0/0 ingressOctets=307945082071,egressOctets=299312691922,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789432, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "174aba78-c7bd-4c60-b3b1-ec8ac6684f7d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-1/0/1 569", + "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, + "duration": 0.48377449, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-1/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8e921541-0e01-4b2c-a880-d9e3f7ac4a82", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-1/1/0 570", + "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, + "duration": 0.468355395, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-1/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6947cf6f-95cc-463b-8959-e9ff1309bc87", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-1/1/1 571", + "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, + "duration": 0.426826788, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-1/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-1-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "726d706b-645e-4ef0-97bc-031a85636d10", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/0/0 1231", + "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, + "duration": 0.365738838, + "executed": 1692789497, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787095 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787696 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788897 + }, + { + "status": 0, + "executed": 1692789197 + }, + { + "status": 0, + "executed": 1692789497 + } + ], + "issued": 1692789497, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-11/0/0 ingressOctets=1313301782676463,egressOctets=197312475878802,ingressErrors=32,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789497, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-11-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ffcf6f6e-1aa7-4f24-a6ad-92f6ae9315ab", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789498 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/0/1 1232", + "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, + "duration": 0.527127825, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785533 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-11/0/1 ingressOctets=286293690860630,egressOctets=42217946277500,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-11-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c28d4701-5846-4820-957b-072c4101f354", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/0/2 1233", + "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, + "duration": 0.491318426, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786447 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-11/0/2 ingressOctets=1163027972364953,egressOctets=196152305208379,ingressErrors=3,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-11-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e7383565-37a4-40c1-9675-93f5e3aa7b38", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/0/3 1234", + "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, + "duration": 0.472660269, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-11/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-11-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c6f9bdd4-1002-4d62-92d4-fa45ca8abe25", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/0 1236", + "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, + "duration": 0.476016451, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-11/2/0 ingressOctets=0,egressOctets=260090122,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-11-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "01c6ffc5-138b-4887-8e80-15f6870ee42d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/1 1239", + "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, + "duration": 0.484472217, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-11/2/1 ingressOctets=0,egressOctets=275925120,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-11-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f6ec0040-451a-4a26-8943-a7348b9cf131", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2 1237", + "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, + "duration": 0.409808034, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783491 + }, + { + "status": 0, + "executed": 1692783791 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784992 + }, + { + "status": 0, + "executed": 1692785292 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786193 + }, + { + "status": 0, + "executed": 1692786493 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-11/2/2 ingressOctets=89260557050,egressOctets=870916537513,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-11-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d8b6a300-bede-43c4-b5b4-c0f258fd7468", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789496 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/2.101 1191", + "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, + "duration": 0.505650927, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784621 + }, + { + "status": 0, + "executed": 1692784921 + }, + { + "status": 0, + "executed": 1692785221 + }, + { + "status": 0, + "executed": 1692785521 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787323 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-11/2/2.101 ingressOctets=89114886806,egressOctets=870668464878,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-11-2-2.101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c6f4c02a-883a-47d8-bb96-cf3a5b8a136a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789425 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-11/2/3 1238", + "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, + "duration": 0.449928224, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789102 + }, + { + "status": 0, + "executed": 1692789402 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-11/2/3 ingressOctets=0,egressOctets=275932416,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-11-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "43071174-5fc2-499f-a99d-dd93c4b6beed", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789702 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/0/0 572", + "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, + "duration": 0.410208933, + "executed": 1692789454, + "history": [ + { + "status": 0, + "executed": 1692783450 + }, + { + "status": 0, + "executed": 1692783750 + }, + { + "status": 0, + "executed": 1692784050 + }, + { + "status": 0, + "executed": 1692784350 + }, + { + "status": 0, + "executed": 1692784651 + }, + { + "status": 0, + "executed": 1692784951 + }, + { + "status": 0, + "executed": 1692785251 + }, + { + "status": 0, + "executed": 1692785552 + }, + { + "status": 0, + "executed": 1692785852 + }, + { + "status": 0, + "executed": 1692786152 + }, + { + "status": 0, + "executed": 1692786452 + }, + { + "status": 0, + "executed": 1692786753 + }, + { + "status": 0, + "executed": 1692787053 + }, + { + "status": 0, + "executed": 1692787353 + }, + { + "status": 0, + "executed": 1692787654 + }, + { + "status": 0, + "executed": 1692787954 + }, + { + "status": 0, + "executed": 1692788254 + }, + { + "status": 0, + "executed": 1692788554 + }, + { + "status": 0, + "executed": 1692788854 + }, + { + "status": 0, + "executed": 1692789154 + }, + { + "status": 0, + "executed": 1692789454 + } + ], + "issued": 1692789454, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789454, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "665e8c75-c5a2-4354-965e-19233d1954dd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789455 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/0/1 573", + "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, + "duration": 0.508457491, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/0/1 ingressOctets=227233344535,egressOctets=273599043542,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "53719fbd-0e41-4e40-9bd4-88f21ae81b46", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/0/2 574", + "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, + "duration": 0.50849015, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783426 + }, + { + "status": 0, + "executed": 1692783726 + }, + { + "status": 0, + "executed": 1692784026 + }, + { + "status": 0, + "executed": 1692784326 + }, + { + "status": 0, + "executed": 1692784627 + }, + { + "status": 0, + "executed": 1692784927 + }, + { + "status": 0, + "executed": 1692785227 + }, + { + "status": 0, + "executed": 1692785527 + }, + { + "status": 0, + "executed": 1692785827 + }, + { + "status": 0, + "executed": 1692786128 + }, + { + "status": 0, + "executed": 1692786428 + }, + { + "status": 0, + "executed": 1692786728 + }, + { + "status": 0, + "executed": 1692787028 + }, + { + "status": 0, + "executed": 1692787329 + }, + { + "status": 0, + "executed": 1692787629 + }, + { + "status": 0, + "executed": 1692787929 + }, + { + "status": 0, + "executed": 1692788229 + }, + { + "status": 0, + "executed": 1692788529 + }, + { + "status": 0, + "executed": 1692788830 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/0/2 ingressOctets=1405145,egressOctets=10217057,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4cccac22-bdf3-43a7-9625-8dee0af98ead", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/0/3 575", + "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, + "duration": 0.394866881, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/0/3 ingressOctets=1977151553384760,egressOctets=2102061511643529,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=26192\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b8fa9c0c-7eed-4a11-a259-887fe638d34d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/0/3.0 776", + "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, + "duration": 0.431192328, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783450 + }, + { + "status": 0, + "executed": 1692783750 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784351 + }, + { + "status": 0, + "executed": 1692784651 + }, + { + "status": 0, + "executed": 1692784951 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785552 + }, + { + "status": 0, + "executed": 1692785852 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786453 + }, + { + "status": 0, + "executed": 1692786753 + }, + { + "status": 0, + "executed": 1692787053 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787654 + }, + { + "status": 0, + "executed": 1692787954 + }, + { + "status": 0, + "executed": 1692788254 + }, + { + "status": 0, + "executed": 1692788554 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/0/3.0 ingressOctets=1977151544364245,egressOctets=2102060981421174,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-0-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ee880f60-45aa-49eb-8d6a-10246e918254", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789455 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0 576", + "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, + "duration": 0.443271965, + "executed": 1692789436, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784633 + }, + { + "status": 0, + "executed": 1692784933 + }, + { + "status": 0, + "executed": 1692785233 + }, + { + "status": 0, + "executed": 1692785533 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786134 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787335 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788836 + }, + { + "status": 0, + "executed": 1692789136 + }, + { + "status": 0, + "executed": 1692789436 + } + ], + "issued": 1692789436, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/1/0 ingressOctets=5034514699627254,egressOctets=169185872690940,ingressErrors=4,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789436, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e4f657e9-effc-4b33-8326-21659e3a6d4a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/0.0 770", + "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, + "duration": 0.489106143, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/1/0.0 ingressOctets=5034514699588876,egressOctets=169185915762921,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-1-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "28b397e9-9c9e-409c-b6d3-e614a22ae458", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/1 577", + "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, + "duration": 0.51860369, + "executed": 1692789442, + "history": [ + { + "status": 0, + "executed": 1692783437 + }, + { + "status": 0, + "executed": 1692783737 + }, + { + "status": 0, + "executed": 1692784038 + }, + { + "status": 0, + "executed": 1692784338 + }, + { + "status": 0, + "executed": 1692784638 + }, + { + "status": 0, + "executed": 1692784938 + }, + { + "status": 0, + "executed": 1692785239 + }, + { + "status": 0, + "executed": 1692785539 + }, + { + "status": 0, + "executed": 1692785839 + }, + { + "status": 0, + "executed": 1692786140 + }, + { + "status": 0, + "executed": 1692786440 + }, + { + "status": 0, + "executed": 1692786740 + }, + { + "status": 0, + "executed": 1692787040 + }, + { + "status": 0, + "executed": 1692787341 + }, + { + "status": 0, + "executed": 1692787641 + }, + { + "status": 0, + "executed": 1692787941 + }, + { + "status": 0, + "executed": 1692788241 + }, + { + "status": 0, + "executed": 1692788541 + }, + { + "status": 0, + "executed": 1692788842 + }, + { + "status": 0, + "executed": 1692789142 + }, + { + "status": 0, + "executed": 1692789442 + } + ], + "issued": 1692789442, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789442, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bbab3950-74df-496a-adcc-5fa4fbf03e05", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789442 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/2 578", + "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, + "duration": 0.44818651, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783481 + }, + { + "status": 0, + "executed": 1692783781 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784982 + }, + { + "status": 0, + "executed": 1692785282 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787384 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787985 + }, + { + "status": 0, + "executed": 1692788285 + }, + { + "status": 0, + "executed": 1692788585 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789485, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/1/2 ingressOctets=5057812691470929,egressOctets=164435745771826,ingressErrors=51,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7429e645-d91f-4798-a986-79343d9e74d9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/2.0 772", + "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, + "duration": 0.482522596, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783490 + }, + { + "status": 0, + "executed": 1692783790 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784991 + }, + { + "status": 0, + "executed": 1692785291 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787393 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787994 + }, + { + "status": 0, + "executed": 1692788294 + }, + { + "status": 0, + "executed": 1692788594 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789494, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/1/2.0 ingressOctets=5057815121415338,egressOctets=164435873358242,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-1-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "97ab40ca-6c7c-4668-9b73-a3a4703bb620", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/1/3 579", + "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, + "duration": 0.482179507, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/1/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "53132542-7b5a-4819-af30-0fda143ded65", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/2/0 580", + "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, + "duration": 0.450540524, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784617 + }, + { + "status": 0, + "executed": 1692784917 + }, + { + "status": 0, + "executed": 1692785217 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787319 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/2/0 ingressOctets=280570936083020,egressOctets=4415315937928651,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "17574e07-829b-4511-b096-c1d5a524849c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/2/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.ams.nl.geant.net", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.42495796, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/2/0.0 ingressOctets=280570935980611,egressOctets=4415315937917924,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-2-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cacf2e65-04d3-4911-a2c8-dd15b3299754", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/2/1 581", + "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, + "duration": 0.519620305, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783431 + }, + { + "status": 0, + "executed": 1692783731 + }, + { + "status": 0, + "executed": 1692784031 + }, + { + "status": 0, + "executed": 1692784331 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785832 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786733 + }, + { + "status": 0, + "executed": 1692787033 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787634 + }, + { + "status": 0, + "executed": 1692787934 + }, + { + "status": 0, + "executed": 1692788234 + }, + { + "status": 0, + "executed": 1692788534 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/2/1 ingressOctets=174337271401991,egressOctets=441474025350210,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0b2b234f-22be-4efa-8ab7-4686ad674740", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/2/2 582", + "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, + "duration": 0.428482724, + "executed": 1692789485, + "history": [ + { + "status": 0, + "executed": 1692783480 + }, + { + "status": 0, + "executed": 1692783780 + }, + { + "status": 0, + "executed": 1692784081 + }, + { + "status": 0, + "executed": 1692784381 + }, + { + "status": 0, + "executed": 1692784681 + }, + { + "status": 0, + "executed": 1692784981 + }, + { + "status": 0, + "executed": 1692785282 + }, + { + "status": 0, + "executed": 1692785582 + }, + { + "status": 0, + "executed": 1692785882 + }, + { + "status": 0, + "executed": 1692786182 + }, + { + "status": 0, + "executed": 1692786483 + }, + { + "status": 0, + "executed": 1692786783 + }, + { + "status": 0, + "executed": 1692787083 + }, + { + "status": 0, + "executed": 1692787384 + }, + { + "status": 0, + "executed": 1692787684 + }, + { + "status": 0, + "executed": 1692787984 + }, + { + "status": 0, + "executed": 1692788285 + }, + { + "status": 0, + "executed": 1692788585 + }, + { + "status": 0, + "executed": 1692788885 + }, + { + "status": 0, + "executed": 1692789185 + }, + { + "status": 0, + "executed": 1692789485 + } + ], + "issued": 1692789485, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/2/2 ingressOctets=280560902156418,egressOctets=4058487066336701,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789485, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ee6a183-ff82-4e4d-95f2-7a8e140ab623", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/2/2.0 774", + "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, + "duration": 0.530892459, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/2/2.0 ingressOctets=280560902150108,egressOctets=4058487109395531,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-2-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4b500672-40f4-4c35-8da7-0ee1e6ca0a99", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/2/3 583", + "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, + "duration": 0.426053022, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786193 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6770e029-8a63-4f23-bea1-0ac4ec6c1475", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/3/0 584", + "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, + "duration": 0.426823274, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786200 + }, + { + "status": 0, + "executed": 1692786500 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/3/0 ingressOctets=55862143447,egressOctets=1125780341,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e16429f1-e777-4169-9716-7a8f4fd01c73", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/3/1 585", + "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, + "duration": 0.444360878, + "executed": 1692789472, + "history": [ + { + "status": 0, + "executed": 1692783467 + }, + { + "status": 0, + "executed": 1692783767 + }, + { + "status": 0, + "executed": 1692784067 + }, + { + "status": 0, + "executed": 1692784368 + }, + { + "status": 0, + "executed": 1692784668 + }, + { + "status": 0, + "executed": 1692784968 + }, + { + "status": 0, + "executed": 1692785268 + }, + { + "status": 0, + "executed": 1692785569 + }, + { + "status": 0, + "executed": 1692785869 + }, + { + "status": 0, + "executed": 1692786169 + }, + { + "status": 0, + "executed": 1692786470 + }, + { + "status": 0, + "executed": 1692786770 + }, + { + "status": 0, + "executed": 1692787070 + }, + { + "status": 0, + "executed": 1692787370 + }, + { + "status": 0, + "executed": 1692787671 + }, + { + "status": 0, + "executed": 1692787971 + }, + { + "status": 0, + "executed": 1692788271 + }, + { + "status": 0, + "executed": 1692788571 + }, + { + "status": 0, + "executed": 1692788872 + }, + { + "status": 0, + "executed": 1692789172 + }, + { + "status": 0, + "executed": 1692789472 + } + ], + "issued": 1692789471, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/3/1 ingressOctets=2736852016,egressOctets=1265566584,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789472, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2e3e9afd-073e-4329-9be8-3c46276c7919", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789472 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/3/2 586", + "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, + "duration": 0.445708662, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/3/2 ingressOctets=1000738968,egressOctets=353919854,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4a9cdcb8-64e5-4b54-a164-c32255ac1416", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/3/2.0 926", + "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, + "duration": 0.430238175, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787981 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/3/2.0 ingressOctets=1000543176,egressOctets=396956202,ingressErrors=0,egressErrors=0,ingressOctetsv6=11485944,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-3-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b3bcd516-7dac-4e56-9fed-781df38ea2a0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-2/3/3 587", + "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, + "duration": 0.439917999, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-2/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-2-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b2f858d4-f6a1-4a7f-b841-5f30502c6647", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/0/0 876", + "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, + "duration": 0.455266818, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/0/0 ingressOctets=2942772405103644,egressOctets=3024657507201173,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=1577893\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8eae7084-aeb0-433f-a194-f3bbda605347", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/0/1 877", + "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, + "duration": 0.424901718, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/0/1 ingressOctets=86489490780514,egressOctets=17081456854708,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "058c35f2-41df-4ec9-9fe8-0df6bf37a46e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/0/2 878", + "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, + "duration": 0.571818282, + "executed": 1692789434, + "history": [ + { + "status": 0, + "executed": 1692783430 + }, + { + "status": 0, + "executed": 1692783730 + }, + { + "status": 0, + "executed": 1692784030 + }, + { + "status": 0, + "executed": 1692784330 + }, + { + "status": 0, + "executed": 1692784631 + }, + { + "status": 0, + "executed": 1692784931 + }, + { + "status": 0, + "executed": 1692785231 + }, + { + "status": 0, + "executed": 1692785531 + }, + { + "status": 0, + "executed": 1692785831 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786432 + }, + { + "status": 0, + "executed": 1692786732 + }, + { + "status": 0, + "executed": 1692787032 + }, + { + "status": 0, + "executed": 1692787333 + }, + { + "status": 0, + "executed": 1692787633 + }, + { + "status": 0, + "executed": 1692787933 + }, + { + "status": 0, + "executed": 1692788233 + }, + { + "status": 0, + "executed": 1692788533 + }, + { + "status": 0, + "executed": 1692788834 + }, + { + "status": 0, + "executed": 1692789134 + }, + { + "status": 0, + "executed": 1692789434 + } + ], + "issued": 1692789434, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/0/2 ingressOctets=1466623673346,egressOctets=285230254821088,ingressErrors=2719,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789434, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ad392c75-aba0-4c46-9997-7436e57a9f9f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/0/3 879", + "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, + "duration": 0.588105023, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/0/3 ingressOctets=1197734419242,egressOctets=295618337066253,ingressErrors=2354,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d315ec7b-c479-4e95-8130-c129b0afa05a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/1 882", + "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, + "duration": 0.447290165, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/1 ingressOctets=39437435390,egressOctets=48600120130,ingressErrors=18,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c1b9fe30-ab72-4035-bc07-7021fca9c139", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/1.0 1450", + "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, + "duration": 0.487885965, + "executed": 1692789721, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785818 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786719 + }, + { + "status": 0, + "executed": 1692787019 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787920 + }, + { + "status": 0, + "executed": 1692788220 + }, + { + "status": 0, + "executed": 1692788520 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789121 + }, + { + "status": 0, + "executed": 1692789421 + }, + { + "status": 0, + "executed": 1692789721 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/1.0 ingressOctets=39437448867,egressOctets=48600132792,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789721, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e3340164-9f34-497e-88ab-7f9c0aab91c6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/2 883", + "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, + "duration": 0.491611357, + "executed": 1692789440, + "history": [ + { + "status": 0, + "executed": 1692783436 + }, + { + "status": 0, + "executed": 1692783736 + }, + { + "status": 0, + "executed": 1692784036 + }, + { + "status": 0, + "executed": 1692784336 + }, + { + "status": 0, + "executed": 1692784636 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785237 + }, + { + "status": 0, + "executed": 1692785537 + }, + { + "status": 0, + "executed": 1692785837 + }, + { + "status": 0, + "executed": 1692786137 + }, + { + "status": 0, + "executed": 1692786438 + }, + { + "status": 0, + "executed": 1692786738 + }, + { + "status": 0, + "executed": 1692787038 + }, + { + "status": 0, + "executed": 1692787339 + }, + { + "status": 0, + "executed": 1692787639 + }, + { + "status": 0, + "executed": 1692787939 + }, + { + "status": 0, + "executed": 1692788239 + }, + { + "status": 0, + "executed": 1692788539 + }, + { + "status": 0, + "executed": 1692788840 + }, + { + "status": 0, + "executed": 1692789140 + }, + { + "status": 0, + "executed": 1692789440 + } + ], + "issued": 1692789440, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/2 ingressOctets=5381620658,egressOctets=7888901339,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789440, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "59fdd9a0-a0b6-4a34-876b-d8f8a5e0ea92", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789440 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/2.0 1448", + "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, + "duration": 0.503053136, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787951 + }, + { + "status": 0, + "executed": 1692788251 + }, + { + "status": 0, + "executed": 1692788551 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/2.0 ingressOctets=5381620989,egressOctets=7888901515,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fbb167a6-7e3c-4648-8fb8-f816e8d56f0e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789452 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3 884", + "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, + "duration": 0.393374932, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3 ingressOctets=973074675762,egressOctets=968790075446,ingressErrors=2,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "40678fa4-d59c-4be2-831a-66f39720db01", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.101 1441", + "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, + "duration": 0.506094454, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784617 + }, + { + "status": 0, + "executed": 1692784917 + }, + { + "status": 0, + "executed": 1692785217 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787319 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.101 ingressOctets=870668478797,egressOctets=89114874206,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ccb28589-2779-48b2-830c-c68795282da4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.102 1311", + "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, + "duration": 0.446251375, + "executed": 1692789439, + "history": [ + { + "status": 0, + "executed": 1692783436 + }, + { + "status": 0, + "executed": 1692783736 + }, + { + "status": 0, + "executed": 1692784036 + }, + { + "status": 0, + "executed": 1692784336 + }, + { + "status": 0, + "executed": 1692784636 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785236 + }, + { + "status": 0, + "executed": 1692785536 + }, + { + "status": 0, + "executed": 1692785837 + }, + { + "status": 0, + "executed": 1692786137 + }, + { + "status": 0, + "executed": 1692786437 + }, + { + "status": 0, + "executed": 1692786738 + }, + { + "status": 0, + "executed": 1692787038 + }, + { + "status": 0, + "executed": 1692787338 + }, + { + "status": 0, + "executed": 1692787638 + }, + { + "status": 0, + "executed": 1692787939 + }, + { + "status": 0, + "executed": 1692788239 + }, + { + "status": 0, + "executed": 1692788539 + }, + { + "status": 0, + "executed": 1692788839 + }, + { + "status": 0, + "executed": 1692789139 + }, + { + "status": 0, + "executed": 1692789439 + } + ], + "issued": 1692789439, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.102 ingressOctets=36246854480,egressOctets=4478466126,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789439, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.102", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "633dbe27-ab34-4b90-a489-be8ea972022b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789440 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.1214 1169", + "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, + "duration": 0.465441167, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.1214 ingressOctets=2167712679,egressOctets=2618868963,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.1214", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dea58f11-69da-4036-b10a-faba86053f63", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789504 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.1237 1040", + "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, + "duration": 0.462915088, + "executed": 1692789464, + "history": [ + { + "status": 0, + "executed": 1692783458 + }, + { + "status": 0, + "executed": 1692783758 + }, + { + "status": 0, + "executed": 1692784059 + }, + { + "status": 0, + "executed": 1692784359 + }, + { + "status": 0, + "executed": 1692784659 + }, + { + "status": 0, + "executed": 1692784960 + }, + { + "status": 0, + "executed": 1692785260 + }, + { + "status": 0, + "executed": 1692785561 + }, + { + "status": 0, + "executed": 1692785861 + }, + { + "status": 0, + "executed": 1692786161 + }, + { + "status": 0, + "executed": 1692786462 + }, + { + "status": 0, + "executed": 1692786762 + }, + { + "status": 0, + "executed": 1692787062 + }, + { + "status": 0, + "executed": 1692787362 + }, + { + "status": 0, + "executed": 1692787663 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788264 + }, + { + "status": 0, + "executed": 1692788564 + }, + { + "status": 0, + "executed": 1692788864 + }, + { + "status": 0, + "executed": 1692789164 + }, + { + "status": 0, + "executed": 1692789464 + } + ], + "issued": 1692789464, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.1237 ingressOctets=195315183,egressOctets=568830,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789464, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.1237", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e02da33c-ef3d-4a3e-bbcd-c4687c6308b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789465 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.1916 1024", + "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, + "duration": 0.57005463, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.1916 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.1916", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9fae7e78-7749-4d4e-a044-505e862b2161", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.2200 988", + "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, + "duration": 0.417113577, + "executed": 1692789459, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784055 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785256 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786157 + }, + { + "status": 0, + "executed": 1692786457 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787358 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788859 + }, + { + "status": 0, + "executed": 1692789159 + }, + { + "status": 0, + "executed": 1692789459 + } + ], + "issued": 1692789459, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.2200 ingressOctets=2155360183,egressOctets=2559018121,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789459, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.2200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "687661ba-a112-4490-92f2-5e8f84a6858e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789460 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.2503 1061", + "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, + "duration": 0.478741269, + "executed": 1692789710, + "history": [ + { + "status": 0, + "executed": 1692783705 + }, + { + "status": 0, + "executed": 1692784006 + }, + { + "status": 0, + "executed": 1692784306 + }, + { + "status": 0, + "executed": 1692784606 + }, + { + "status": 0, + "executed": 1692784906 + }, + { + "status": 0, + "executed": 1692785206 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785807 + }, + { + "status": 0, + "executed": 1692786107 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786709 + }, + { + "status": 0, + "executed": 1692787009 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788210 + }, + { + "status": 0, + "executed": 1692788510 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789710 + } + ], + "issued": 1692789710, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.2503 ingressOctets=557955969,egressOctets=79314090562,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789710, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.2503", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "06757a8e-bfef-42c8-8f38-64c5ac0faa7c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789711 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.3068 976", + "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, + "duration": 0.540342166, + "executed": 1692789441, + "history": [ + { + "status": 0, + "executed": 1692783437 + }, + { + "status": 0, + "executed": 1692783737 + }, + { + "status": 0, + "executed": 1692784038 + }, + { + "status": 0, + "executed": 1692784338 + }, + { + "status": 0, + "executed": 1692784638 + }, + { + "status": 0, + "executed": 1692784938 + }, + { + "status": 0, + "executed": 1692785239 + }, + { + "status": 0, + "executed": 1692785538 + }, + { + "status": 0, + "executed": 1692785839 + }, + { + "status": 0, + "executed": 1692786139 + }, + { + "status": 0, + "executed": 1692786440 + }, + { + "status": 0, + "executed": 1692786740 + }, + { + "status": 0, + "executed": 1692787040 + }, + { + "status": 0, + "executed": 1692787340 + }, + { + "status": 0, + "executed": 1692787641 + }, + { + "status": 0, + "executed": 1692787941 + }, + { + "status": 0, + "executed": 1692788241 + }, + { + "status": 0, + "executed": 1692788541 + }, + { + "status": 0, + "executed": 1692788841 + }, + { + "status": 0, + "executed": 1692789141 + }, + { + "status": 0, + "executed": 1692789441 + } + ], + "issued": 1692789441, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.3068 ingressOctets=2280836072,egressOctets=270225018449,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789441, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.3068", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c35fe498-f39c-4c8b-83a8-8f91677f2cc6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789442 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.375 1368", + "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, + "duration": 0.43311914, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783460 + }, + { + "status": 0, + "executed": 1692783760 + }, + { + "status": 0, + "executed": 1692784060 + }, + { + "status": 0, + "executed": 1692784361 + }, + { + "status": 0, + "executed": 1692784661 + }, + { + "status": 0, + "executed": 1692784961 + }, + { + "status": 0, + "executed": 1692785261 + }, + { + "status": 0, + "executed": 1692785562 + }, + { + "status": 0, + "executed": 1692785862 + }, + { + "status": 0, + "executed": 1692786162 + }, + { + "status": 0, + "executed": 1692786463 + }, + { + "status": 0, + "executed": 1692786763 + }, + { + "status": 0, + "executed": 1692787063 + }, + { + "status": 0, + "executed": 1692787363 + }, + { + "status": 0, + "executed": 1692787664 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788265 + }, + { + "status": 0, + "executed": 1692788565 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789465, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.375 ingressOctets=1966893047,egressOctets=34382515668,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.375", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "230b3e31-caf2-4d63-920d-ea0850e2b446", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789466 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.472 1315", + "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, + "duration": 0.437860451, + "executed": 1692789428, + "history": [ + { + "status": 0, + "executed": 1692783424 + }, + { + "status": 0, + "executed": 1692783724 + }, + { + "status": 0, + "executed": 1692784024 + }, + { + "status": 0, + "executed": 1692784324 + }, + { + "status": 0, + "executed": 1692784624 + }, + { + "status": 0, + "executed": 1692784924 + }, + { + "status": 0, + "executed": 1692785224 + }, + { + "status": 0, + "executed": 1692785524 + }, + { + "status": 0, + "executed": 1692785825 + }, + { + "status": 0, + "executed": 1692786125 + }, + { + "status": 0, + "executed": 1692786426 + }, + { + "status": 0, + "executed": 1692786726 + }, + { + "status": 0, + "executed": 1692787026 + }, + { + "status": 0, + "executed": 1692787326 + }, + { + "status": 0, + "executed": 1692787626 + }, + { + "status": 0, + "executed": 1692787927 + }, + { + "status": 0, + "executed": 1692788227 + }, + { + "status": 0, + "executed": 1692788527 + }, + { + "status": 0, + "executed": 1692788827 + }, + { + "status": 0, + "executed": 1692789128 + }, + { + "status": 0, + "executed": 1692789428 + } + ], + "issued": 1692789428, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.472 ingressOctets=52839483293,egressOctets=30115358909,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789428, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.472", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2b192d82-ed6d-41e7-abdc-8399e308cda0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789428 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.701 1155", + "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, + "duration": 0.489968949, + "executed": 1692789460, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784055 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785256 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786157 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787358 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788860 + }, + { + "status": 0, + "executed": 1692789160 + }, + { + "status": 0, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.701 ingressOctets=64739515,egressOctets=4692870,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789460, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.701", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6fe9ee19-b2b6-4c9d-8ef1-894f9c8cd2d4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789460 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.702 987", + "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, + "duration": 0.514378843, + "executed": 1692789426, + "history": [ + { + "status": 0, + "executed": 1692783422 + }, + { + "status": 0, + "executed": 1692783722 + }, + { + "status": 0, + "executed": 1692784022 + }, + { + "status": 0, + "executed": 1692784322 + }, + { + "status": 0, + "executed": 1692784623 + }, + { + "status": 0, + "executed": 1692784923 + }, + { + "status": 0, + "executed": 1692785223 + }, + { + "status": 0, + "executed": 1692785523 + }, + { + "status": 0, + "executed": 1692785823 + }, + { + "status": 0, + "executed": 1692786124 + }, + { + "status": 0, + "executed": 1692786424 + }, + { + "status": 0, + "executed": 1692786724 + }, + { + "status": 0, + "executed": 1692787024 + }, + { + "status": 0, + "executed": 1692787325 + }, + { + "status": 0, + "executed": 1692787625 + }, + { + "status": 0, + "executed": 1692787925 + }, + { + "status": 0, + "executed": 1692788225 + }, + { + "status": 0, + "executed": 1692788525 + }, + { + "status": 0, + "executed": 1692788826 + }, + { + "status": 0, + "executed": 1692789126 + }, + { + "status": 0, + "executed": 1692789426 + } + ], + "issued": 1692789426, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.702 ingressOctets=68810808,egressOctets=7512912,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789426, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.702", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d9f959da-9ec8-4133-9b61-9dba9f073419", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789427 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-5/2/3.936 1339", + "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, + "duration": 0.538434733, + "executed": 1692789434, + "history": [ + { + "status": 0, + "executed": 1692783430 + }, + { + "status": 0, + "executed": 1692783730 + }, + { + "status": 0, + "executed": 1692784030 + }, + { + "status": 0, + "executed": 1692784330 + }, + { + "status": 0, + "executed": 1692784631 + }, + { + "status": 0, + "executed": 1692784931 + }, + { + "status": 0, + "executed": 1692785231 + }, + { + "status": 0, + "executed": 1692785531 + }, + { + "status": 0, + "executed": 1692785831 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786432 + }, + { + "status": 0, + "executed": 1692786732 + }, + { + "status": 0, + "executed": 1692787032 + }, + { + "status": 0, + "executed": 1692787333 + }, + { + "status": 0, + "executed": 1692787633 + }, + { + "status": 0, + "executed": 1692787933 + }, + { + "status": 0, + "executed": 1692788233 + }, + { + "status": 0, + "executed": 1692788533 + }, + { + "status": 0, + "executed": 1692788834 + }, + { + "status": 0, + "executed": 1692789134 + }, + { + "status": 0, + "executed": 1692789434 + } + ], + "issued": 1692789434, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-5/2/3.936 ingressOctets=61175024,egressOctets=4229314,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789434, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-5-2-3.936", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "400f2612-0960-407d-9e85-ec31349f55c6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/0 740", + "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, + "duration": 0.41189677, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/0 ingressOctets=2934851637085107,egressOctets=3026032017441588,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=1900416\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "94fa39e0-8ad5-4a23-8acf-348e2d9393e1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/1 741", + "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, + "duration": 0.431560697, + "executed": 1692789493, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786491 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789493 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/1 ingressOctets=4436057035950579,egressOctets=2081659435179417,ingressErrors=11,egressErrors=0,ingressDiscards=0,egressDiscards=3024024\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789493, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "25bdb949-3502-4588-83bc-85653bad95ec", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789494 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/2 742", + "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, + "duration": 0.44456667, + "executed": 1692789716, + "history": [ + { + "status": 0, + "executed": 1692783712 + }, + { + "status": 0, + "executed": 1692784012 + }, + { + "status": 0, + "executed": 1692784312 + }, + { + "status": 0, + "executed": 1692784613 + }, + { + "status": 0, + "executed": 1692784913 + }, + { + "status": 0, + "executed": 1692785213 + }, + { + "status": 0, + "executed": 1692785513 + }, + { + "status": 0, + "executed": 1692785813 + }, + { + "status": 0, + "executed": 1692786113 + }, + { + "status": 0, + "executed": 1692786414 + }, + { + "status": 0, + "executed": 1692786714 + }, + { + "status": 0, + "executed": 1692787014 + }, + { + "status": 0, + "executed": 1692787315 + }, + { + "status": 0, + "executed": 1692787615 + }, + { + "status": 0, + "executed": 1692787915 + }, + { + "status": 0, + "executed": 1692788215 + }, + { + "status": 0, + "executed": 1692788515 + }, + { + "status": 0, + "executed": 1692788816 + }, + { + "status": 0, + "executed": 1692789116 + }, + { + "status": 0, + "executed": 1692789416 + }, + { + "status": 0, + "executed": 1692789716 + } + ], + "issued": 1692789715, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/2 ingressOctets=39887199285,egressOctets=69545272684,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789716, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "97ef3af9-a203-4dd4-b6e5-0834c131cc1b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789716 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/2.0 778", + "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, + "duration": 0.432248876, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/2.0 ingressOctets=39887197257,egressOctets=69545247932,ingressErrors=0,egressErrors=0,ingressOctetsv6=22563371187,egressOctetsv6=58091894272,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b01859c1-146c-4ee9-8e1b-b0171612a2e3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/3 637", + "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, + "duration": 0.506203525, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/3 ingressOctets=462243512436,egressOctets=4284026855896,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f60f1b6a-69f2-4485-b985-40e66685bc87", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/3.0 806", + "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, + "duration": 0.448687164, + "executed": 1692789493, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786491 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789493 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/3.0 ingressOctets=462243489988,egressOctets=4284069880646,ingressErrors=0,egressErrors=0,ingressOctetsv6=37746673832,egressOctetsv6=199254675,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789493, + "occurrences": 11392, + "occurrences_watermark": 11392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "70a84757-d09d-45eb-9413-c7543b610068", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789494 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/4 681", + "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, + "duration": 0.524062303, + "executed": 1692789434, + "history": [ + { + "status": 0, + "executed": 1692783431 + }, + { + "status": 0, + "executed": 1692783731 + }, + { + "status": 0, + "executed": 1692784031 + }, + { + "status": 0, + "executed": 1692784331 + }, + { + "status": 0, + "executed": 1692784631 + }, + { + "status": 0, + "executed": 1692784931 + }, + { + "status": 0, + "executed": 1692785231 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785832 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786733 + }, + { + "status": 0, + "executed": 1692787033 + }, + { + "status": 0, + "executed": 1692787333 + }, + { + "status": 0, + "executed": 1692787633 + }, + { + "status": 0, + "executed": 1692787934 + }, + { + "status": 0, + "executed": 1692788234 + }, + { + "status": 0, + "executed": 1692788534 + }, + { + "status": 0, + "executed": 1692788834 + }, + { + "status": 0, + "executed": 1692789134 + }, + { + "status": 0, + "executed": 1692789434 + } + ], + "issued": 1692789434, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789434, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "657bd614-6263-4d28-8d55-ef219e458eb1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/5 686", + "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, + "duration": 0.511292893, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783474 + }, + { + "status": 0, + "executed": 1692783774 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/5 ingressOctets=2454549620,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c9e088e9-059d-4eb6-bccd-3cb414755514", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/6 712", + "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, + "duration": 0.419392224, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786193 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/6 ingressOctets=640364106190,egressOctets=581990248130,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1e787651-a9ab-4f97-8ecb-117479305296", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/6.0 804", + "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, + "duration": 0.479405566, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/6.0 ingressOctets=640371383224,egressOctets=582039949382,ingressErrors=0,egressErrors=0,ingressOctetsv6=190671295829,egressOctetsv6=178087586205,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8fdcb679-8e52-4a40-8637-921d934a72b4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/7 715", + "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, + "duration": 0.477491903, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783454 + }, + { + "status": 0, + "executed": 1692783754 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784355 + }, + { + "status": 0, + "executed": 1692784655 + }, + { + "status": 0, + "executed": 1692784955 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785556 + }, + { + "status": 0, + "executed": 1692785856 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786456 + }, + { + "status": 0, + "executed": 1692786757 + }, + { + "status": 0, + "executed": 1692787057 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787658 + }, + { + "status": 0, + "executed": 1692787958 + }, + { + "status": 0, + "executed": 1692788258 + }, + { + "status": 0, + "executed": 1692788558 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ef52bd89-7341-4783-9e1d-3bd68da63c42", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/8 716", + "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, + "duration": 0.443313994, + "executed": 1692789469, + "history": [ + { + "status": 0, + "executed": 1692783464 + }, + { + "status": 0, + "executed": 1692783764 + }, + { + "status": 0, + "executed": 1692784065 + }, + { + "status": 0, + "executed": 1692784365 + }, + { + "status": 0, + "executed": 1692784665 + }, + { + "status": 0, + "executed": 1692784965 + }, + { + "status": 0, + "executed": 1692785266 + }, + { + "status": 0, + "executed": 1692785566 + }, + { + "status": 0, + "executed": 1692785866 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786467 + }, + { + "status": 0, + "executed": 1692786767 + }, + { + "status": 0, + "executed": 1692787067 + }, + { + "status": 0, + "executed": 1692787368 + }, + { + "status": 0, + "executed": 1692787668 + }, + { + "status": 0, + "executed": 1692787968 + }, + { + "status": 0, + "executed": 1692788269 + }, + { + "status": 0, + "executed": 1692788569 + }, + { + "status": 0, + "executed": 1692788869 + }, + { + "status": 0, + "executed": 1692789169 + }, + { + "status": 0, + "executed": 1692789469 + } + ], + "issued": 1692789469, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/8 ingressOctets=1731005189419713,egressOctets=1440289560165742,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=20295191\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789469, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "82cb9076-1c79-4620-8e35-04272c84fc11", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789470 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/8.105 1126", + "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, + "duration": 0.442562862, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/8.105 ingressOctets=841417362299871,egressOctets=201218742452190,ingressErrors=0,egressErrors=0,ingressOctetsv6=458025000890404,egressOctetsv6=168966494986033,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-8.105", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dce1eed4-fc52-4110-b130-4b05a76cd228", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/8.111 1127", + "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, + "duration": 0.468226545, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/8.111 ingressOctets=53068330465859,egressOctets=179288805076224,ingressErrors=0,egressErrors=0,ingressOctetsv6=229854560,egressOctetsv6=123615306703047,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-8.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ce2e1dce-f807-4262-ade6-05d43f790e1e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ams.nl.geant.net xe-9/0/9 739", + "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, + "duration": 0.496218542, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.ams.nl.geant.net,interface_name=xe-9/0/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ams.nl.geant.net-xe-9-0-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ams.nl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ams.nl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fad42f50-c278-4b09-963c-3b09533a3ef6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 663198", + "handlers": [], + "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, + "duration": 0.489193315, + "executed": 1692789497, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787095 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787696 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788897 + }, + { + "status": 0, + "executed": 1692789197 + }, + { + "status": 0, + "executed": 1692789497 + } + ], + "issued": 1692789497, + "output": "dscp32_counters,service_id=663198,hostname=mx1.ath2.gr.geant.net,interface_name=ae12.333 ingressOctets=47857858084722,egressOctets=70004232873955\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789497, + "occurrences": 3425, + "occurrences_watermark": 3425, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-CYNET_AP3_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0c7a4d22-e296-45b3-98f6-0482c3e8ee77", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789498 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 662907", + "handlers": [], + "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, + "duration": 0.443783106, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783491 + }, + { + "status": 0, + "executed": 1692783791 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784992 + }, + { + "status": 0, + "executed": 1692785292 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786193 + }, + { + "status": 0, + "executed": 1692786493 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "dscp32_counters,service_id=662907,hostname=mx1.ath2.gr.geant.net,interface_name=ae11.333 ingressOctets=3011507317791758,egressOctets=4421236253672750\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 2032, + "occurrences_watermark": 2032, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-GRNET_AP2_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0ef6c0e5-cb7a-4baf-90bb-c9b9754f59b0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789496 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.ath2.gr.geant.net", + "handlers": [], + "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, + "duration": 7.447967456, + "executed": 1692789461, + "history": [ + { + "status": 1, + "executed": 1692783456 + }, + { + "status": 1, + "executed": 1692783756 + }, + { + "status": 1, + "executed": 1692784056 + }, + { + "status": 1, + "executed": 1692784357 + }, + { + "status": 1, + "executed": 1692784657 + }, + { + "status": 1, + "executed": 1692784957 + }, + { + "status": 1, + "executed": 1692785257 + }, + { + "status": 1, + "executed": 1692785558 + }, + { + "status": 1, + "executed": 1692785858 + }, + { + "status": 1, + "executed": 1692786158 + }, + { + "status": 1, + "executed": 1692786459 + }, + { + "status": 1, + "executed": 1692786759 + }, + { + "status": 1, + "executed": 1692787059 + }, + { + "status": 1, + "executed": 1692787359 + }, + { + "status": 1, + "executed": 1692787660 + }, + { + "status": 1, + "executed": 1692787960 + }, + { + "status": 1, + "executed": 1692788260 + }, + { + "status": 1, + "executed": 1692788560 + }, + { + "status": 1, + "executed": 1692788861 + }, + { + "status": 1, + "executed": 1692789161 + }, + { + "status": 1, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "2023-08-23 11:17:41,672 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:41,672 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:41,672 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:41,672 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.ath2.gr.geant.net\n2023-08-23 11:17:41,676 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:41,705 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.ath2.gr.geant.net HTTP/1.1\" 200 14706\nmulticast,hostname=mx1.ath2.gr.geant.net,subscription=232.223.222.1 octets=287274033818\n2023-08-23 11:17:48,759 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.2,232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.8,232.223.222.9,232.223.222.10,232.223.222.11,232.223.222.12,232.223.222.13,232.223.222.14,232.223.222.15,232.223.222.16,232.223.222.17,232.223.222.18,232.223.222.19,232.223.222.20,232.223.222.21,232.223.222.22,232.223.222.23,232.223.222.24,232.223.222.25,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.29,232.223.222.30,232.223.222.31,232.223.222.32,232.223.222.33,232.223.222.34,232.223.222.35,232.223.222.36,232.223.222.37,232.223.222.38,232.223.222.39,232.223.222.40,232.223.222.41,232.223.222.42,232.223.222.43,232.223.222.44,232.223.222.45,232.223.222.46,232.223.222.47,232.223.222.48,232.223.222.49,232.223.222.50,232.223.222.51,232.223.222.52,232.223.222.53,232.223.222.54,232.223.222.55,232.223.222.56,232.223.222.57,232.223.222.58,232.223.222.59,232.223.222.60,232.223.222.61,232.223.222.62,232.223.222.63,232.223.222.64,232.223.222.65,232.223.222.66,232.223.222.67,232.223.222.68,232.223.222.69,232.223.222.70,232.223.222.71,232.223.222.72,232.223.223.1,232.223.223.22\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3b90d67b-0fa3-4878-a4cd-df1cd6d42ba4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789468 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae0 573", + "handlers": [], + "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, + "duration": 0.808091273, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae0 ingressOctets=6680126516957132,egressOctets=7006504997247173,ingressErrors=670,egressErrors=0,ingressDiscards=0,egressDiscards=246634\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f6208850-612d-44ed-9049-6f53d87385ba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae0.0 575", + "handlers": [], + "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, + "duration": 0.827910212, + "executed": 1692789497, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787095 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787696 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788897 + }, + { + "status": 0, + "executed": 1692789197 + }, + { + "status": 0, + "executed": 1692789497 + } + ], + "issued": 1692789497, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae0.0 ingressOctets=6680130828734504,egressOctets=7006499785755828,ingressErrors=0,egressErrors=0,ingressOctetsv6=350815349306,egressOctetsv6=15526496609657,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789497, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc335d2b-0ad8-48ec-90c3-4b0d7b7c5629", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789498 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae1 576", + "handlers": [], + "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, + "duration": 0.715089402, + "executed": 1692789472, + "history": [ + { + "status": 0, + "executed": 1692783467 + }, + { + "status": 0, + "executed": 1692783767 + }, + { + "status": 0, + "executed": 1692784067 + }, + { + "status": 0, + "executed": 1692784368 + }, + { + "status": 0, + "executed": 1692784668 + }, + { + "status": 0, + "executed": 1692784968 + }, + { + "status": 0, + "executed": 1692785268 + }, + { + "status": 0, + "executed": 1692785569 + }, + { + "status": 0, + "executed": 1692785869 + }, + { + "status": 0, + "executed": 1692786169 + }, + { + "status": 0, + "executed": 1692786470 + }, + { + "status": 0, + "executed": 1692786770 + }, + { + "status": 0, + "executed": 1692787070 + }, + { + "status": 0, + "executed": 1692787370 + }, + { + "status": 0, + "executed": 1692787671 + }, + { + "status": 0, + "executed": 1692787971 + }, + { + "status": 0, + "executed": 1692788271 + }, + { + "status": 0, + "executed": 1692788571 + }, + { + "status": 0, + "executed": 1692788872 + }, + { + "status": 0, + "executed": 1692789172 + }, + { + "status": 0, + "executed": 1692789472 + } + ], + "issued": 1692789471, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae1 ingressOctets=13797393729846268,egressOctets=13582577083923075,ingressErrors=6879,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789472, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "735002c8-5a57-4a6f-af0c-8c773be2d66f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789473 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae1.0 577", + "handlers": [], + "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, + "duration": 0.730078732, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786447 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae1.0 ingressOctets=13797375885329170,egressOctets=13582557385118937,ingressErrors=0,egressErrors=0,ingressOctetsv6=1607774452054,egressOctetsv6=642314959916,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bced9bb8-70c5-427f-aaf2-698357b97bcc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae11 593", + "handlers": [], + "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, + "duration": 0.788889105, + "executed": 1692789485, + "history": [ + { + "status": 0, + "executed": 1692783480 + }, + { + "status": 0, + "executed": 1692783780 + }, + { + "status": 0, + "executed": 1692784081 + }, + { + "status": 0, + "executed": 1692784381 + }, + { + "status": 0, + "executed": 1692784681 + }, + { + "status": 0, + "executed": 1692784981 + }, + { + "status": 0, + "executed": 1692785282 + }, + { + "status": 0, + "executed": 1692785582 + }, + { + "status": 0, + "executed": 1692785882 + }, + { + "status": 0, + "executed": 1692786182 + }, + { + "status": 0, + "executed": 1692786483 + }, + { + "status": 0, + "executed": 1692786783 + }, + { + "status": 0, + "executed": 1692787083 + }, + { + "status": 0, + "executed": 1692787384 + }, + { + "status": 0, + "executed": 1692787684 + }, + { + "status": 0, + "executed": 1692787984 + }, + { + "status": 0, + "executed": 1692788285 + }, + { + "status": 0, + "executed": 1692788585 + }, + { + "status": 0, + "executed": 1692788885 + }, + { + "status": 0, + "executed": 1692789185 + }, + { + "status": 0, + "executed": 1692789485 + } + ], + "issued": 1692789485, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae11 ingressOctets=13943167222817679,egressOctets=13436600851608443,ingressErrors=2389,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789485, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6e1e8e9a-c024-42c1-9ec7-9d09a38ce4da", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae11.100 611", + "handlers": [], + "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, + "duration": 0.742267349, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae11.100 ingressOctets=6991910764980225,egressOctets=77491139278179,ingressErrors=0,egressErrors=0,ingressOctetsv6=26378747136438,egressOctetsv6=1488633681697,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae11.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "474e3fe1-6546-4bbf-afe2-170ab970537f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae11.333 608", + "handlers": [], + "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, + "duration": 0.711035572, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786446 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae11.333 ingressOctets=6951233824542474,egressOctets=13359077535174509,ingressErrors=0,egressErrors=0,ingressOctetsv6=261789765190041,egressOctetsv6=934639164355144,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae11.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3b0bfd46-4c59-4447-b18f-f1eb4c55d4ec", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae11.668 679", + "handlers": [], + "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, + "duration": 0.692839482, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae11.668 ingressOctets=1854757237,egressOctets=4019591108,ingressErrors=0,egressErrors=0,ingressOctetsv6=1075887409,egressOctetsv6=10908,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae11.668", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e8c9911-3721-4a7d-b958-69d6f44d87dd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae12 546", + "handlers": [], + "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, + "duration": 0.755714963, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae12 ingressOctets=281696873619917,egressOctets=622361445561795,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "557b4421-7f47-4658-8037-f6ebfe0f4154", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789454 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae12.100 552", + "handlers": [], + "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, + "duration": 0.728781009, + "executed": 1692789462, + "history": [ + { + "status": 0, + "executed": 1692783457 + }, + { + "status": 0, + "executed": 1692783757 + }, + { + "status": 0, + "executed": 1692784058 + }, + { + "status": 0, + "executed": 1692784358 + }, + { + "status": 0, + "executed": 1692784658 + }, + { + "status": 0, + "executed": 1692784958 + }, + { + "status": 0, + "executed": 1692785259 + }, + { + "status": 0, + "executed": 1692785559 + }, + { + "status": 0, + "executed": 1692785859 + }, + { + "status": 0, + "executed": 1692786159 + }, + { + "status": 0, + "executed": 1692786460 + }, + { + "status": 0, + "executed": 1692786760 + }, + { + "status": 0, + "executed": 1692787060 + }, + { + "status": 0, + "executed": 1692787361 + }, + { + "status": 0, + "executed": 1692787661 + }, + { + "status": 0, + "executed": 1692787961 + }, + { + "status": 0, + "executed": 1692788262 + }, + { + "status": 0, + "executed": 1692788562 + }, + { + "status": 0, + "executed": 1692788862 + }, + { + "status": 0, + "executed": 1692789162 + }, + { + "status": 0, + "executed": 1692789462 + } + ], + "issued": 1692789462, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae12.100 ingressOctets=29419258899073,egressOctets=154866153242197,ingressErrors=0,egressErrors=0,ingressOctetsv6=211235194,egressOctetsv6=2164368824,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789462, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae12.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "76cd6cfe-5b95-408f-8a51-5e55185e95e1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789463 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae12.333 551", + "handlers": [], + "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, + "duration": 0.753338334, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783451 + }, + { + "status": 0, + "executed": 1692783751 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784352 + }, + { + "status": 0, + "executed": 1692784652 + }, + { + "status": 0, + "executed": 1692784952 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785553 + }, + { + "status": 0, + "executed": 1692785853 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786754 + }, + { + "status": 0, + "executed": 1692787054 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787655 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae12.333 ingressOctets=194335002882463,egressOctets=411342703049411,ingressErrors=0,egressErrors=0,ingressOctetsv6=567243400,egressOctetsv6=2580217298,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae12.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0d70e104-e757-4843-84f4-d5c64a0065bc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ae12.505 557", + "handlers": [], + "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, + "duration": 0.758312578, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783472 + }, + { + "status": 0, + "executed": 1692783772 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786176 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ae12.505 ingressOctets=57942643050644,egressOctets=56152231181451,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ae12.505", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "10e882fd-7ec1-440f-a90d-805f64e189a9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net dsc.0 510", + "handlers": [], + "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, + "duration": 0.776806922, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=dsc.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-dsc.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "064be2ff-d073-4b97-969b-2560067d28b3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789723 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/0 526", + "handlers": [], + "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, + "duration": 0.772116225, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34144, + "occurrences_watermark": 34144, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bde06730-a44b-40ba-b4a1-0987eed27a0f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789488 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/1 527", + "handlers": [], + "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, + "duration": 0.72977426, + "executed": 1692789438, + "history": [ + { + "status": 0, + "executed": 1692783435 + }, + { + "status": 0, + "executed": 1692783735 + }, + { + "status": 0, + "executed": 1692784035 + }, + { + "status": 0, + "executed": 1692784335 + }, + { + "status": 0, + "executed": 1692784635 + }, + { + "status": 0, + "executed": 1692784935 + }, + { + "status": 0, + "executed": 1692785235 + }, + { + "status": 0, + "executed": 1692785535 + }, + { + "status": 0, + "executed": 1692785836 + }, + { + "status": 0, + "executed": 1692786136 + }, + { + "status": 0, + "executed": 1692786436 + }, + { + "status": 0, + "executed": 1692786737 + }, + { + "status": 0, + "executed": 1692787037 + }, + { + "status": 0, + "executed": 1692787337 + }, + { + "status": 0, + "executed": 1692787638 + }, + { + "status": 0, + "executed": 1692787938 + }, + { + "status": 0, + "executed": 1692788238 + }, + { + "status": 0, + "executed": 1692788538 + }, + { + "status": 0, + "executed": 1692788838 + }, + { + "status": 0, + "executed": 1692789138 + }, + { + "status": 0, + "executed": 1692789438 + } + ], + "issued": 1692789438, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789438, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2bc953e2-926d-4228-8302-70a4aa727781", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789439 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/2 528", + "handlers": [], + "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, + "duration": 0.698523577, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783429 + }, + { + "status": 0, + "executed": 1692783729 + }, + { + "status": 0, + "executed": 1692784029 + }, + { + "status": 0, + "executed": 1692784329 + }, + { + "status": 0, + "executed": 1692784630 + }, + { + "status": 0, + "executed": 1692784930 + }, + { + "status": 0, + "executed": 1692785230 + }, + { + "status": 0, + "executed": 1692785530 + }, + { + "status": 0, + "executed": 1692785830 + }, + { + "status": 0, + "executed": 1692786131 + }, + { + "status": 0, + "executed": 1692786431 + }, + { + "status": 0, + "executed": 1692786731 + }, + { + "status": 0, + "executed": 1692787031 + }, + { + "status": 0, + "executed": 1692787332 + }, + { + "status": 0, + "executed": 1692787632 + }, + { + "status": 0, + "executed": 1692787932 + }, + { + "status": 0, + "executed": 1692788232 + }, + { + "status": 0, + "executed": 1692788532 + }, + { + "status": 0, + "executed": 1692788833 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0366cecc-f129-4afb-8368-4fc9503485c2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789434 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/3 529", + "handlers": [], + "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, + "duration": 0.721941379, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34144, + "occurrences_watermark": 34144, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a2f78b60-d14b-4556-ad33-36080d03f418", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/4 530", + "handlers": [], + "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, + "duration": 0.765438239, + "executed": 1692789470, + "history": [ + { + "status": 0, + "executed": 1692783465 + }, + { + "status": 0, + "executed": 1692783765 + }, + { + "status": 0, + "executed": 1692784066 + }, + { + "status": 0, + "executed": 1692784366 + }, + { + "status": 0, + "executed": 1692784666 + }, + { + "status": 0, + "executed": 1692784967 + }, + { + "status": 0, + "executed": 1692785267 + }, + { + "status": 0, + "executed": 1692785567 + }, + { + "status": 0, + "executed": 1692785867 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786468 + }, + { + "status": 0, + "executed": 1692786768 + }, + { + "status": 0, + "executed": 1692787068 + }, + { + "status": 0, + "executed": 1692787369 + }, + { + "status": 0, + "executed": 1692787669 + }, + { + "status": 0, + "executed": 1692787969 + }, + { + "status": 0, + "executed": 1692788270 + }, + { + "status": 0, + "executed": 1692788570 + }, + { + "status": 0, + "executed": 1692788870 + }, + { + "status": 0, + "executed": 1692789170 + }, + { + "status": 0, + "executed": 1692789470 + } + ], + "issued": 1692789470, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789470, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9150cb1e-0c8e-4358-bce5-a777fbfbb660", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789471 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/5 531", + "handlers": [], + "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, + "duration": 0.747860085, + "executed": 1692789476, + "history": [ + { + "status": 0, + "executed": 1692783471 + }, + { + "status": 0, + "executed": 1692783771 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784373 + }, + { + "status": 0, + "executed": 1692784673 + }, + { + "status": 0, + "executed": 1692784973 + }, + { + "status": 0, + "executed": 1692785273 + }, + { + "status": 0, + "executed": 1692785574 + }, + { + "status": 0, + "executed": 1692785874 + }, + { + "status": 0, + "executed": 1692786174 + }, + { + "status": 0, + "executed": 1692786474 + }, + { + "status": 0, + "executed": 1692786775 + }, + { + "status": 0, + "executed": 1692787075 + }, + { + "status": 0, + "executed": 1692787375 + }, + { + "status": 0, + "executed": 1692787676 + }, + { + "status": 0, + "executed": 1692787976 + }, + { + "status": 0, + "executed": 1692788276 + }, + { + "status": 0, + "executed": 1692788576 + }, + { + "status": 0, + "executed": 1692788877 + }, + { + "status": 0, + "executed": 1692789177 + }, + { + "status": 0, + "executed": 1692789476 + } + ], + "issued": 1692789476, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789476, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bd544835-dfdc-4706-a3af-664fefa39729", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789477 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/6 532", + "handlers": [], + "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, + "duration": 0.765794256, + "executed": 1692789424, + "history": [ + { + "status": 0, + "executed": 1692783420 + }, + { + "status": 0, + "executed": 1692783720 + }, + { + "status": 0, + "executed": 1692784020 + }, + { + "status": 0, + "executed": 1692784320 + }, + { + "status": 0, + "executed": 1692784620 + }, + { + "status": 0, + "executed": 1692784920 + }, + { + "status": 0, + "executed": 1692785220 + }, + { + "status": 0, + "executed": 1692785520 + }, + { + "status": 0, + "executed": 1692785821 + }, + { + "status": 0, + "executed": 1692786121 + }, + { + "status": 0, + "executed": 1692786421 + }, + { + "status": 0, + "executed": 1692786722 + }, + { + "status": 0, + "executed": 1692787022 + }, + { + "status": 0, + "executed": 1692787322 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787923 + }, + { + "status": 0, + "executed": 1692788223 + }, + { + "status": 0, + "executed": 1692788523 + }, + { + "status": 0, + "executed": 1692788823 + }, + { + "status": 0, + "executed": 1692789124 + }, + { + "status": 0, + "executed": 1692789424 + } + ], + "issued": 1692789424, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789424, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a44c38e1-0c31-40ae-a49f-1e44a308abf0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789424 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/7 533", + "handlers": [], + "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, + "duration": 0.705536648, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784617 + }, + { + "status": 0, + "executed": 1692784917 + }, + { + "status": 0, + "executed": 1692785217 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787319 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b2db9187-71bd-4822-8557-c5bb9c8c7f4b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/8 534", + "handlers": [], + "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, + "duration": 0.681077416, + "executed": 1692789714, + "history": [ + { + "status": 0, + "executed": 1692783711 + }, + { + "status": 0, + "executed": 1692784011 + }, + { + "status": 0, + "executed": 1692784311 + }, + { + "status": 0, + "executed": 1692784611 + }, + { + "status": 0, + "executed": 1692784911 + }, + { + "status": 0, + "executed": 1692785211 + }, + { + "status": 0, + "executed": 1692785511 + }, + { + "status": 0, + "executed": 1692785812 + }, + { + "status": 0, + "executed": 1692786112 + }, + { + "status": 0, + "executed": 1692786413 + }, + { + "status": 0, + "executed": 1692786713 + }, + { + "status": 0, + "executed": 1692787013 + }, + { + "status": 0, + "executed": 1692787313 + }, + { + "status": 0, + "executed": 1692787613 + }, + { + "status": 0, + "executed": 1692787913 + }, + { + "status": 0, + "executed": 1692788214 + }, + { + "status": 0, + "executed": 1692788514 + }, + { + "status": 0, + "executed": 1692788814 + }, + { + "status": 0, + "executed": 1692789114 + }, + { + "status": 0, + "executed": 1692789414 + }, + { + "status": 0, + "executed": 1692789714 + } + ], + "issued": 1692789714, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789714, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "53e04c16-04cf-4f76-8a78-f82f494f906a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789714 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/2/9 535", + "handlers": [], + "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, + "duration": 0.802713185, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783431 + }, + { + "status": 0, + "executed": 1692783731 + }, + { + "status": 0, + "executed": 1692784031 + }, + { + "status": 0, + "executed": 1692784331 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785832 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786733 + }, + { + "status": 0, + "executed": 1692787033 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787634 + }, + { + "status": 0, + "executed": 1692787934 + }, + { + "status": 0, + "executed": 1692788234 + }, + { + "status": 0, + "executed": 1692788534 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "41683b01-ad53-472e-b8f4-9627605f0d2b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/0 536", + "handlers": [], + "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, + "duration": 0.754867884, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "307fda25-ec1d-4197-9d96-b00c440f21d6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789454 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/1 537", + "handlers": [], + "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, + "duration": 0.723544221, + "executed": 1692789454, + "history": [ + { + "status": 0, + "executed": 1692783450 + }, + { + "status": 0, + "executed": 1692783750 + }, + { + "status": 0, + "executed": 1692784050 + }, + { + "status": 0, + "executed": 1692784350 + }, + { + "status": 0, + "executed": 1692784651 + }, + { + "status": 0, + "executed": 1692784951 + }, + { + "status": 0, + "executed": 1692785251 + }, + { + "status": 0, + "executed": 1692785552 + }, + { + "status": 0, + "executed": 1692785852 + }, + { + "status": 0, + "executed": 1692786152 + }, + { + "status": 0, + "executed": 1692786452 + }, + { + "status": 0, + "executed": 1692786753 + }, + { + "status": 0, + "executed": 1692787053 + }, + { + "status": 0, + "executed": 1692787353 + }, + { + "status": 0, + "executed": 1692787654 + }, + { + "status": 0, + "executed": 1692787954 + }, + { + "status": 0, + "executed": 1692788254 + }, + { + "status": 0, + "executed": 1692788554 + }, + { + "status": 0, + "executed": 1692788854 + }, + { + "status": 0, + "executed": 1692789154 + }, + { + "status": 0, + "executed": 1692789454 + } + ], + "issued": 1692789454, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789454, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5bb421b6-7717-410e-96cf-50c73f2ba4a2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789455 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/2 538", + "handlers": [], + "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, + "duration": 0.733412502, + "executed": 1692789426, + "history": [ + { + "status": 0, + "executed": 1692783422 + }, + { + "status": 0, + "executed": 1692783722 + }, + { + "status": 0, + "executed": 1692784022 + }, + { + "status": 0, + "executed": 1692784322 + }, + { + "status": 0, + "executed": 1692784623 + }, + { + "status": 0, + "executed": 1692784923 + }, + { + "status": 0, + "executed": 1692785223 + }, + { + "status": 0, + "executed": 1692785523 + }, + { + "status": 0, + "executed": 1692785823 + }, + { + "status": 0, + "executed": 1692786124 + }, + { + "status": 0, + "executed": 1692786424 + }, + { + "status": 0, + "executed": 1692786724 + }, + { + "status": 0, + "executed": 1692787024 + }, + { + "status": 0, + "executed": 1692787325 + }, + { + "status": 0, + "executed": 1692787625 + }, + { + "status": 0, + "executed": 1692787925 + }, + { + "status": 0, + "executed": 1692788225 + }, + { + "status": 0, + "executed": 1692788525 + }, + { + "status": 0, + "executed": 1692788826 + }, + { + "status": 0, + "executed": 1692789126 + }, + { + "status": 0, + "executed": 1692789426 + } + ], + "issued": 1692789426, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789426, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3afd5224-efcf-4c82-977e-f5a950170dce", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789427 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/3 539", + "handlers": [], + "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, + "duration": 0.696018075, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783453 + }, + { + "status": 0, + "executed": 1692783753 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784354 + }, + { + "status": 0, + "executed": 1692784654 + }, + { + "status": 0, + "executed": 1692784954 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785555 + }, + { + "status": 0, + "executed": 1692785855 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786456 + }, + { + "status": 0, + "executed": 1692786756 + }, + { + "status": 0, + "executed": 1692787056 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787657 + }, + { + "status": 0, + "executed": 1692787957 + }, + { + "status": 0, + "executed": 1692788257 + }, + { + "status": 0, + "executed": 1692788557 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bab88957-5ed3-431a-a2cd-074877a905cb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789458 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/4 540", + "handlers": [], + "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, + "duration": 0.706298771, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785440 + }, + { + "status": 0, + "executed": 1692785740 + }, + { + "status": 0, + "executed": 1692786041 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787241 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787842 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5eb54362-7f01-42b4-ba7f-a52da1a1e606", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/5 541", + "handlers": [], + "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, + "duration": 0.739567307, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "378c4419-4e2d-4e7e-bd9f-39498f7ec471", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789488 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/6 542", + "handlers": [], + "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, + "duration": 0.722087755, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783472 + }, + { + "status": 0, + "executed": 1692783772 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786176 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3823c634-549b-41d2-85ac-486c8bda4bd8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/7 543", + "handlers": [], + "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, + "duration": 0.708715939, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b7b2eb31-9f73-4220-965e-6d377caed717", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/8 544", + "handlers": [], + "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, + "duration": 0.828479333, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "858b5d55-7e35-482c-b607-7eb436e3a74e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789462 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net ge-1/3/9 545", + "handlers": [], + "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, + "duration": 0.81604291, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784621 + }, + { + "status": 0, + "executed": 1692784921 + }, + { + "status": 0, + "executed": 1692785221 + }, + { + "status": 0, + "executed": 1692785521 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786422 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787323 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=ge-1/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-ge-1-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6d0a9cf2-790a-4a60-9bc7-416562204f51", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net lt-2/0/0 641", + "handlers": [], + "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, + "duration": 0.761721828, + "executed": 1692789460, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788860 + }, + { + "status": 0, + "executed": 1692789160 + }, + { + "status": 0, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=lt-2/0/0 ingressOctets=1624995099953,egressOctets=1629442272310,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789460, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-lt-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6518b19f-31bf-46ee-9683-eecf16c3afc0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net lt-2/0/0.16 644", + "handlers": [], + "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, + "duration": 0.716745564, + "executed": 1692789490, + "history": [ + { + "status": 0, + "executed": 1692783486 + }, + { + "status": 0, + "executed": 1692783786 + }, + { + "status": 0, + "executed": 1692784086 + }, + { + "status": 0, + "executed": 1692784386 + }, + { + "status": 0, + "executed": 1692784686 + }, + { + "status": 0, + "executed": 1692784987 + }, + { + "status": 0, + "executed": 1692785287 + }, + { + "status": 0, + "executed": 1692785587 + }, + { + "status": 0, + "executed": 1692785887 + }, + { + "status": 0, + "executed": 1692786188 + }, + { + "status": 0, + "executed": 1692786488 + }, + { + "status": 0, + "executed": 1692786788 + }, + { + "status": 0, + "executed": 1692787088 + }, + { + "status": 0, + "executed": 1692787389 + }, + { + "status": 0, + "executed": 1692787689 + }, + { + "status": 0, + "executed": 1692787989 + }, + { + "status": 0, + "executed": 1692788290 + }, + { + "status": 0, + "executed": 1692788590 + }, + { + "status": 0, + "executed": 1692788890 + }, + { + "status": 0, + "executed": 1692789190 + }, + { + "status": 0, + "executed": 1692789490 + } + ], + "issued": 1692789490, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=lt-2/0/0.16 ingressOctets=206882401,egressOctets=1629166902870,ingressErrors=0,egressErrors=0,ingressOctetsv6=590472,egressOctetsv6=23846600,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789490, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-lt-2-0-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "915fe861-59e6-4f3c-9af7-f9fae403fc2e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789491 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net lt-2/0/0.61 645", + "handlers": [], + "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, + "duration": 0.753201894, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=lt-2/0/0.61 ingressOctets=1624791681168,egressOctets=207828679,ingressErrors=0,egressErrors=0,ingressOctetsv6=53393822552,egressOctetsv6=1822345,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-lt-2-0-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "09895ee3-a7df-4585-b8d8-cfa6cfb3faf0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-1/0/0 568", + "handlers": [], + "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, + "duration": 0.761545416, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-1/0/0 ingressOctets=281696945845121,egressOctets=622362602696205,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2db55545-e8ee-4275-8329-7575a373f209", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-1/0/1 569", + "handlers": [], + "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, + "duration": 0.702154919, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783523 + }, + { + "status": 0, + "executed": 1692783823 + }, + { + "status": 0, + "executed": 1692784124 + }, + { + "status": 0, + "executed": 1692784424 + }, + { + "status": 0, + "executed": 1692784724 + }, + { + "status": 0, + "executed": 1692785024 + }, + { + "status": 0, + "executed": 1692785324 + }, + { + "status": 0, + "executed": 1692785625 + }, + { + "status": 0, + "executed": 1692785925 + }, + { + "status": 0, + "executed": 1692786225 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786826 + }, + { + "status": 0, + "executed": 1692787126 + }, + { + "status": 0, + "executed": 1692787426 + }, + { + "status": 0, + "executed": 1692787727 + }, + { + "status": 0, + "executed": 1692788027 + }, + { + "status": 0, + "executed": 1692788327 + }, + { + "status": 0, + "executed": 1692788627 + }, + { + "status": 0, + "executed": 1692788928 + }, + { + "status": 0, + "executed": 1692789228 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789527, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-1/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1bf0020a-3857-47b2-83e5-e9f521ecb314", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-1/1/0 571", + "handlers": [], + "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, + "duration": 0.731709745, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-1/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "39719249-6606-4292-a405-1bbe457171fa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789488 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-1/1/1 570", + "handlers": [], + "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, + "duration": 0.737783867, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783490 + }, + { + "status": 0, + "executed": 1692783790 + }, + { + "status": 0, + "executed": 1692784091 + }, + { + "status": 0, + "executed": 1692784391 + }, + { + "status": 0, + "executed": 1692784691 + }, + { + "status": 0, + "executed": 1692784991 + }, + { + "status": 0, + "executed": 1692785291 + }, + { + "status": 0, + "executed": 1692785592 + }, + { + "status": 0, + "executed": 1692785892 + }, + { + "status": 0, + "executed": 1692786192 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786793 + }, + { + "status": 0, + "executed": 1692787093 + }, + { + "status": 0, + "executed": 1692787393 + }, + { + "status": 0, + "executed": 1692787694 + }, + { + "status": 0, + "executed": 1692787994 + }, + { + "status": 0, + "executed": 1692788294 + }, + { + "status": 0, + "executed": 1692788594 + }, + { + "status": 0, + "executed": 1692788895 + }, + { + "status": 0, + "executed": 1692789195 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789494, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-1/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-1-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "39600e45-950a-4c80-805b-207b47b74725", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/0 623", + "handlers": [], + "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, + "duration": 0.704808566, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/0 ingressOctets=3450790286473425,egressOctets=3395124303347428,ingressErrors=2807,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7839249d-ec34-4eea-b22a-7afaf2cad0ef", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/1 624", + "handlers": [], + "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, + "duration": 0.793875229, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788261 + }, + { + "status": 0, + "executed": 1692788561 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/1 ingressOctets=3445211580924038,egressOctets=3395730353325496,ingressErrors=2601,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0ccee09c-2c5c-4b39-89c7-ebef46df0345", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789462 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/2 625", + "handlers": [], + "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, + "duration": 0.708553778, + "executed": 1692789711, + "history": [ + { + "status": 0, + "executed": 1692783707 + }, + { + "status": 0, + "executed": 1692784007 + }, + { + "status": 0, + "executed": 1692784307 + }, + { + "status": 0, + "executed": 1692784607 + }, + { + "status": 0, + "executed": 1692784907 + }, + { + "status": 0, + "executed": 1692785207 + }, + { + "status": 0, + "executed": 1692785507 + }, + { + "status": 0, + "executed": 1692785808 + }, + { + "status": 0, + "executed": 1692786108 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786709 + }, + { + "status": 0, + "executed": 1692787009 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787910 + }, + { + "status": 0, + "executed": 1692788210 + }, + { + "status": 0, + "executed": 1692788510 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789711 + } + ], + "issued": 1692789710, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/2 ingressOctets=55832368351373,egressOctets=57683516906337,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789711, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1afce821-ec81-4b78-92d9-b3aa1223f81e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789712 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/2.505 559", + "handlers": [], + "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, + "duration": 0.714760151, + "executed": 1692789507, + "history": [ + { + "status": 0, + "executed": 1692783503 + }, + { + "status": 0, + "executed": 1692783803 + }, + { + "status": 0, + "executed": 1692784103 + }, + { + "status": 0, + "executed": 1692784403 + }, + { + "status": 0, + "executed": 1692784703 + }, + { + "status": 0, + "executed": 1692785004 + }, + { + "status": 0, + "executed": 1692785304 + }, + { + "status": 0, + "executed": 1692785604 + }, + { + "status": 0, + "executed": 1692785904 + }, + { + "status": 0, + "executed": 1692786205 + }, + { + "status": 0, + "executed": 1692786505 + }, + { + "status": 0, + "executed": 1692786805 + }, + { + "status": 0, + "executed": 1692787105 + }, + { + "status": 0, + "executed": 1692787406 + }, + { + "status": 0, + "executed": 1692787706 + }, + { + "status": 0, + "executed": 1692788007 + }, + { + "status": 0, + "executed": 1692788307 + }, + { + "status": 0, + "executed": 1692788607 + }, + { + "status": 0, + "executed": 1692788907 + }, + { + "status": 0, + "executed": 1692789207 + }, + { + "status": 0, + "executed": 1692789507 + } + ], + "issued": 1692789507, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/2.505 ingressOctets=55831768599117,egressOctets=57682870332989,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789507, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-2.505", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "624510ec-96ee-4f8e-ab96-a8e9f2b3d706", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789508 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/3 626", + "handlers": [], + "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, + "duration": 0.744234517, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/3 ingressOctets=3453716618325939,egressOctets=3393712473089065,ingressErrors=402,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5f07ae28-10d6-48d1-bccf-cb5b4b942b01", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789612 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/4 627", + "handlers": [], + "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, + "duration": 0.744495571, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/4 ingressOctets=3453511735705597,egressOctets=3359286204288990,ingressErrors=357,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7fca7271-0977-44a9-9094-015dd51a7f83", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/5 628", + "handlers": [], + "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, + "duration": 0.719922828, + "executed": 1692789472, + "history": [ + { + "status": 0, + "executed": 1692783467 + }, + { + "status": 0, + "executed": 1692783767 + }, + { + "status": 0, + "executed": 1692784067 + }, + { + "status": 0, + "executed": 1692784368 + }, + { + "status": 0, + "executed": 1692784668 + }, + { + "status": 0, + "executed": 1692784968 + }, + { + "status": 0, + "executed": 1692785268 + }, + { + "status": 0, + "executed": 1692785569 + }, + { + "status": 0, + "executed": 1692785869 + }, + { + "status": 0, + "executed": 1692786169 + }, + { + "status": 0, + "executed": 1692786470 + }, + { + "status": 0, + "executed": 1692786770 + }, + { + "status": 0, + "executed": 1692787070 + }, + { + "status": 0, + "executed": 1692787370 + }, + { + "status": 0, + "executed": 1692787671 + }, + { + "status": 0, + "executed": 1692787971 + }, + { + "status": 0, + "executed": 1692788271 + }, + { + "status": 0, + "executed": 1692788571 + }, + { + "status": 0, + "executed": 1692788872 + }, + { + "status": 0, + "executed": 1692789172 + }, + { + "status": 0, + "executed": 1692789472 + } + ], + "issued": 1692789471, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/5 ingressOctets=3484286169235896,egressOctets=3358600876666369,ingressErrors=305,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789472, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a5b9bc3a-71d2-4108-a31f-844591537532", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789473 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/6 629", + "handlers": [], + "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, + "duration": 0.725488126, + "executed": 1692789634, + "history": [ + { + "status": 0, + "executed": 1692783630 + }, + { + "status": 0, + "executed": 1692783930 + }, + { + "status": 0, + "executed": 1692784230 + }, + { + "status": 0, + "executed": 1692784530 + }, + { + "status": 0, + "executed": 1692784831 + }, + { + "status": 0, + "executed": 1692785131 + }, + { + "status": 0, + "executed": 1692785431 + }, + { + "status": 0, + "executed": 1692785731 + }, + { + "status": 0, + "executed": 1692786032 + }, + { + "status": 0, + "executed": 1692786332 + }, + { + "status": 0, + "executed": 1692786632 + }, + { + "status": 0, + "executed": 1692786932 + }, + { + "status": 0, + "executed": 1692787232 + }, + { + "status": 0, + "executed": 1692787533 + }, + { + "status": 0, + "executed": 1692787833 + }, + { + "status": 0, + "executed": 1692788133 + }, + { + "status": 0, + "executed": 1692788433 + }, + { + "status": 0, + "executed": 1692788734 + }, + { + "status": 0, + "executed": 1692789034 + }, + { + "status": 0, + "executed": 1692789335 + }, + { + "status": 0, + "executed": 1692789634 + } + ], + "issued": 1692789634, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/6 ingressOctets=1670973008743746,egressOctets=1751742964873122,ingressErrors=228,egressErrors=0,ingressDiscards=0,egressDiscards=156315\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789634, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6561dd00-c881-4c2b-ac7d-3ba236b4197c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789635 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/7 630", + "handlers": [], + "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, + "duration": 0.773362402, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/7 ingressOctets=1671354414113849,egressOctets=1750744910066707,ingressErrors=227,egressErrors=0,ingressDiscards=0,egressDiscards=21477\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2aa02a4e-e2d6-4068-801d-3cda5e2f5388", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/8 631", + "handlers": [], + "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, + "duration": 0.715122118, + "executed": 1692789590, + "history": [ + { + "status": 0, + "executed": 1692783586 + }, + { + "status": 0, + "executed": 1692783886 + }, + { + "status": 0, + "executed": 1692784186 + }, + { + "status": 0, + "executed": 1692784486 + }, + { + "status": 0, + "executed": 1692784786 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785988 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786587 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787488 + }, + { + "status": 0, + "executed": 1692787789 + }, + { + "status": 0, + "executed": 1692788089 + }, + { + "status": 0, + "executed": 1692788389 + }, + { + "status": 0, + "executed": 1692788690 + }, + { + "status": 0, + "executed": 1692788990 + }, + { + "status": 0, + "executed": 1692789290 + }, + { + "status": 0, + "executed": 1692789590 + } + ], + "issued": 1692789590, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/8 ingressOctets=1668884536628470,egressOctets=1750327023547208,ingressErrors=119,egressErrors=0,ingressDiscards=0,egressDiscards=40603\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789590, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "28a17406-5416-4ced-9f4a-46e8e74aac6e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789591 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-2/0/9 632", + "handlers": [], + "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, + "duration": 0.776237644, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-2/0/9 ingressOctets=3485441785316931,egressOctets=3359636507754122,ingressErrors=571,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-2-0-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ca17e4e-59bf-43d1-a21d-142d9ea1db65", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/0 591", + "handlers": [], + "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, + "duration": 0.779359878, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-3/0/0 ingressOctets=3447728174513103,egressOctets=3398043634245749,ingressErrors=1069,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "81295632-3c26-4f2d-a7e6-6c45b7d519c8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/1 594", + "handlers": [], + "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, + "duration": 0.818532209, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789016 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789616, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-3/0/1 ingressOctets=1668944393228975,egressOctets=1753703341209293,ingressErrors=96,egressErrors=0,ingressDiscards=0,egressDiscards=28239\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-3-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f3325d1-0564-4f85-bbe8-0410bd39f6ae", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/2 595", + "handlers": [], + "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, + "duration": 0.739813411, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-3/0/2 ingressOctets=3519936204572933,egressOctets=3359089833227853,ingressErrors=1156,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-3-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "babfbed0-0f9d-4fa9-825f-62ec0ecd2de2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789488 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/3 596", + "handlers": [], + "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, + "duration": 0.709317456, + "executed": 1692789614, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786612 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787212 + }, + { + "status": 0, + "executed": 1692787512 + }, + { + "status": 0, + "executed": 1692787813 + }, + { + "status": 0, + "executed": 1692788113 + }, + { + "status": 0, + "executed": 1692788413 + }, + { + "status": 0, + "executed": 1692788714 + }, + { + "status": 0, + "executed": 1692789014 + }, + { + "status": 0, + "executed": 1692789314 + }, + { + "status": 0, + "executed": 1692789614 + } + ], + "issued": 1692789614, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-3/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789614, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-3-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ac4f8685-c236-40d3-a8d3-2c3ac78efe97", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789615 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/4 597", + "handlers": [], + "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, + "duration": 0.765740154, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784519 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-3/0/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-3-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6c6f556a-b03c-46a4-ab7e-2de583e33ac7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789623 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/5 598", + "handlers": [], + "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, + "duration": 0.721592943, + "executed": 1692789621, + "history": [ + { + "status": 0, + "executed": 1692783616 + }, + { + "status": 0, + "executed": 1692783916 + }, + { + "status": 0, + "executed": 1692784216 + }, + { + "status": 0, + "executed": 1692784516 + }, + { + "status": 0, + "executed": 1692784817 + }, + { + "status": 0, + "executed": 1692785117 + }, + { + "status": 0, + "executed": 1692785417 + }, + { + "status": 0, + "executed": 1692785717 + }, + { + "status": 0, + "executed": 1692786019 + }, + { + "status": 0, + "executed": 1692786319 + }, + { + "status": 0, + "executed": 1692786618 + }, + { + "status": 0, + "executed": 1692786919 + }, + { + "status": 0, + "executed": 1692787219 + }, + { + "status": 0, + "executed": 1692787519 + }, + { + "status": 0, + "executed": 1692787820 + }, + { + "status": 0, + "executed": 1692788120 + }, + { + "status": 0, + "executed": 1692788421 + }, + { + "status": 0, + "executed": 1692788721 + }, + { + "status": 0, + "executed": 1692789021 + }, + { + "status": 0, + "executed": 1692789322 + }, + { + "status": 0, + "executed": 1692789621 + } + ], + "issued": 1692789621, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-3/0/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789621, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-3-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bb0c0422-5dba-499d-b319-38aecb00c814", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789622 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/6 599", + "handlers": [], + "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, + "duration": 0.761814226, + "executed": 1692789460, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788860 + }, + { + "status": 0, + "executed": 1692789160 + }, + { + "status": 0, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-3/0/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789460, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-3-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7bb7fd34-b794-4dc1-850c-35f3366e3211", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/7 600", + "handlers": [], + "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, + "duration": 0.871385752, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-3/0/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-3-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ae75b933-acc6-4615-b99d-be0a6a20244e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/8 601", + "handlers": [], + "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, + "duration": 0.768127535, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-3/0/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-3-0-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "84deeaf8-bae6-42bb-8b56-2c4a52326411", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ath2.gr.geant.net xe-3/0/9 602", + "handlers": [], + "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, + "duration": 0.701729999, + "executed": 1692789647, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784841 + }, + { + "status": 0, + "executed": 1692785141 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785742 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786644 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787545 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788446 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789046 + }, + { + "status": 0, + "executed": 1692789347 + }, + { + "status": 0, + "executed": 1692789647 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.ath2.gr.geant.net,interface_name=xe-3/0/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789647, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ath2.gr.geant.net-xe-3-0-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ath2.gr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ath2.gr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d180b767-32f6-4afb-84fe-10ef4320d923", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789647 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 662955", + "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, + "duration": 0.385110442, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783461 + }, + { + "status": 0, + "executed": 1692783761 + }, + { + "status": 0, + "executed": 1692784061 + }, + { + "status": 0, + "executed": 1692784362 + }, + { + "status": 0, + "executed": 1692784662 + }, + { + "status": 0, + "executed": 1692784962 + }, + { + "status": 0, + "executed": 1692785262 + }, + { + "status": 0, + "executed": 1692785563 + }, + { + "status": 0, + "executed": 1692785863 + }, + { + "status": 0, + "executed": 1692786163 + }, + { + "status": 0, + "executed": 1692786464 + }, + { + "status": 0, + "executed": 1692786764 + }, + { + "status": 0, + "executed": 1692787064 + }, + { + "status": 0, + "executed": 1692787364 + }, + { + "status": 0, + "executed": 1692787665 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788266 + }, + { + "status": 0, + "executed": 1692788566 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789466, + "output": "dscp32_counters,service_id=662955,hostname=mx1.buc.ro.geant.net,interface_name=ae11.334 ingressOctets=57583577202,egressOctets=31816774107\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 2031, + "occurrences_watermark": 2031, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-RENAM_AP3_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "db1d55c0-a3c3-46d4-8f7b-311b3071d615", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789467 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 663112", + "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, + "duration": 0.432807747, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "dscp32_counters,service_id=663112,hostname=mx1.buc.ro.geant.net,interface_name=ae11.333 ingressOctets=56992328076436,egressOctets=23856523219134\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 732, + "occurrences_watermark": 732, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-ROEDUNET_AP1_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "04795119-21e4-446e-bd65-19abb9196c90", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.buc.ro.geant.net", + "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, + "duration": 6.311128492, + "executed": 1692789453, + "history": [ + { + "status": 1, + "executed": 1692783448 + }, + { + "status": 1, + "executed": 1692783748 + }, + { + "status": 1, + "executed": 1692784049 + }, + { + "status": 1, + "executed": 1692784349 + }, + { + "status": 1, + "executed": 1692784649 + }, + { + "status": 1, + "executed": 1692784949 + }, + { + "status": 1, + "executed": 1692785250 + }, + { + "status": 1, + "executed": 1692785550 + }, + { + "status": 1, + "executed": 1692785850 + }, + { + "status": 1, + "executed": 1692786150 + }, + { + "status": 1, + "executed": 1692786451 + }, + { + "status": 1, + "executed": 1692786751 + }, + { + "status": 1, + "executed": 1692787051 + }, + { + "status": 1, + "executed": 1692787352 + }, + { + "status": 1, + "executed": 1692787652 + }, + { + "status": 1, + "executed": 1692787952 + }, + { + "status": 1, + "executed": 1692788252 + }, + { + "status": 1, + "executed": 1692788552 + }, + { + "status": 1, + "executed": 1692788853 + }, + { + "status": 1, + "executed": 1692789153 + }, + { + "status": 1, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "2023-08-23 11:17:33,709 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:33,709 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:33,709 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:33,709 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.buc.ro.geant.net\n2023-08-23 11:17:33,712 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:33,746 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.buc.ro.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.buc.ro.geant.net,subscription=232.223.222.1 octets=103357210369\n2023-08-23 11:17:39,628 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.2,232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.8,232.223.222.9,232.223.222.10,232.223.222.11,232.223.222.12,232.223.222.13,232.223.222.14,232.223.222.15,232.223.222.16,232.223.222.17,232.223.222.18,232.223.222.19,232.223.222.20,232.223.222.21,232.223.222.22,232.223.222.23,232.223.222.24,232.223.222.25,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.29,232.223.222.30,232.223.222.31,232.223.222.32,232.223.222.33,232.223.222.34,232.223.222.35,232.223.222.36,232.223.222.37,232.223.222.38,232.223.222.39,232.223.222.40,232.223.222.41,232.223.222.42,232.223.222.43,232.223.222.44,232.223.222.45,232.223.222.46,232.223.222.47,232.223.222.48,232.223.222.49,232.223.222.50,232.223.222.51,232.223.222.52,232.223.222.53,232.223.222.54,232.223.222.55,232.223.222.56,232.223.222.57,232.223.222.58,232.223.222.59,232.223.222.60,232.223.222.61,232.223.222.62,232.223.222.63,232.223.222.64,232.223.222.65,232.223.222.66,232.223.222.67,232.223.222.68,232.223.222.69,232.223.222.70,232.223.222.71,232.223.222.72,232.223.223.1,232.223.223.22\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.buc.ro.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8353ad38-7669-4d80-833c-5390bdbefc9d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae1 539", + "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, + "duration": 0.660907163, + "executed": 1692789630, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785427 + }, + { + "status": 0, + "executed": 1692785727 + }, + { + "status": 0, + "executed": 1692786028 + }, + { + "status": 0, + "executed": 1692786328 + }, + { + "status": 0, + "executed": 1692786627 + }, + { + "status": 0, + "executed": 1692786928 + }, + { + "status": 0, + "executed": 1692787228 + }, + { + "status": 0, + "executed": 1692787529 + }, + { + "status": 0, + "executed": 1692787829 + }, + { + "status": 0, + "executed": 1692788129 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789030 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789630 + } + ], + "issued": 1692789630, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae1 ingressOctets=91698881756,egressOctets=5292920649,ingressErrors=126,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789630, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d73d9367-37c8-4f6d-864b-a05e6df05a74", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae1.103 761", + "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, + "duration": 0.558373955, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae1.103 ingressOctets=78038475411,egressOctets=1513619769,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae1.103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3a871f53-8624-4b7b-93e8-827286f0cd9c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae1.998 764", + "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, + "duration": 0.578936308, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783454 + }, + { + "status": 0, + "executed": 1692783754 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784355 + }, + { + "status": 0, + "executed": 1692784655 + }, + { + "status": 0, + "executed": 1692784955 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785556 + }, + { + "status": 0, + "executed": 1692785856 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786457 + }, + { + "status": 0, + "executed": 1692786757 + }, + { + "status": 0, + "executed": 1692787057 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787658 + }, + { + "status": 0, + "executed": 1692787958 + }, + { + "status": 0, + "executed": 1692788258 + }, + { + "status": 0, + "executed": 1692788558 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae1.998 ingressOctets=8499894961,egressOctets=3199829390,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae1.998", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "938b8f73-b9b9-420d-b0e3-ace728885d45", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae11 549", + "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, + "duration": 0.552702618, + "executed": 1692789440, + "history": [ + { + "status": 0, + "executed": 1692783436 + }, + { + "status": 0, + "executed": 1692783736 + }, + { + "status": 0, + "executed": 1692784036 + }, + { + "status": 0, + "executed": 1692784336 + }, + { + "status": 0, + "executed": 1692784636 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785237 + }, + { + "status": 0, + "executed": 1692785537 + }, + { + "status": 0, + "executed": 1692785837 + }, + { + "status": 0, + "executed": 1692786138 + }, + { + "status": 0, + "executed": 1692786438 + }, + { + "status": 0, + "executed": 1692786738 + }, + { + "status": 0, + "executed": 1692787038 + }, + { + "status": 0, + "executed": 1692787339 + }, + { + "status": 0, + "executed": 1692787639 + }, + { + "status": 0, + "executed": 1692787939 + }, + { + "status": 0, + "executed": 1692788239 + }, + { + "status": 0, + "executed": 1692788539 + }, + { + "status": 0, + "executed": 1692788840 + }, + { + "status": 0, + "executed": 1692789140 + }, + { + "status": 0, + "executed": 1692789440 + } + ], + "issued": 1692789440, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae11 ingressOctets=968924302654798,egressOctets=616021188384483,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=81635325\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789440, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f269d396-bfaf-4a35-89b5-4de075e0b272", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789440 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae11.0 640", + "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, + "duration": 0.57754215, + "executed": 1692789470, + "history": [ + { + "status": 0, + "executed": 1692783465 + }, + { + "status": 0, + "executed": 1692783765 + }, + { + "status": 0, + "executed": 1692784066 + }, + { + "status": 0, + "executed": 1692784366 + }, + { + "status": 0, + "executed": 1692784666 + }, + { + "status": 0, + "executed": 1692784967 + }, + { + "status": 0, + "executed": 1692785267 + }, + { + "status": 0, + "executed": 1692785567 + }, + { + "status": 0, + "executed": 1692785867 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786468 + }, + { + "status": 0, + "executed": 1692786768 + }, + { + "status": 0, + "executed": 1692787068 + }, + { + "status": 0, + "executed": 1692787369 + }, + { + "status": 0, + "executed": 1692787669 + }, + { + "status": 0, + "executed": 1692787969 + }, + { + "status": 0, + "executed": 1692788270 + }, + { + "status": 0, + "executed": 1692788570 + }, + { + "status": 0, + "executed": 1692788870 + }, + { + "status": 0, + "executed": 1692789170 + }, + { + "status": 0, + "executed": 1692789470 + } + ], + "issued": 1692789470, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae11.0 ingressOctets=563286727319808,egressOctets=350703580456853,ingressErrors=0,egressErrors=0,ingressOctetsv6=266424776532399,egressOctetsv6=79784752613311,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789470, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae11.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a16235e7-3192-425e-bb55-32fde09e9baf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789471 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae11.111 643", + "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, + "duration": 0.532564201, + "executed": 1692789454, + "history": [ + { + "status": 0, + "executed": 1692783450 + }, + { + "status": 0, + "executed": 1692783750 + }, + { + "status": 0, + "executed": 1692784050 + }, + { + "status": 0, + "executed": 1692784350 + }, + { + "status": 0, + "executed": 1692784651 + }, + { + "status": 0, + "executed": 1692784951 + }, + { + "status": 0, + "executed": 1692785251 + }, + { + "status": 0, + "executed": 1692785552 + }, + { + "status": 0, + "executed": 1692785852 + }, + { + "status": 0, + "executed": 1692786152 + }, + { + "status": 0, + "executed": 1692786452 + }, + { + "status": 0, + "executed": 1692786753 + }, + { + "status": 0, + "executed": 1692787053 + }, + { + "status": 0, + "executed": 1692787353 + }, + { + "status": 0, + "executed": 1692787654 + }, + { + "status": 0, + "executed": 1692787954 + }, + { + "status": 0, + "executed": 1692788254 + }, + { + "status": 0, + "executed": 1692788554 + }, + { + "status": 0, + "executed": 1692788854 + }, + { + "status": 0, + "executed": 1692789154 + }, + { + "status": 0, + "executed": 1692789454 + } + ], + "issued": 1692789454, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae11.111 ingressOctets=296823294004121,egressOctets=126137200730174,ingressErrors=0,egressErrors=0,ingressOctetsv6=194696428441517,egressOctetsv6=68998905158581,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789454, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae11.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6ee93dec-2b7a-425e-bc3f-c66eea240539", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789455 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae11.200 746", + "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, + "duration": 0.574609713, + "executed": 1692789436, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784633 + }, + { + "status": 0, + "executed": 1692784933 + }, + { + "status": 0, + "executed": 1692785233 + }, + { + "status": 0, + "executed": 1692785533 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786134 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787335 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788836 + }, + { + "status": 0, + "executed": 1692789136 + }, + { + "status": 0, + "executed": 1692789436 + } + ], + "issued": 1692789436, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae11.200 ingressOctets=741278072,egressOctets=2947677373,ingressErrors=0,egressErrors=0,ingressOctetsv6=184993324,egressOctetsv6=608122066,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789436, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae11.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3d9bc92c-7eeb-49a6-aaad-d88ae6f2645c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae11.333 642", + "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, + "duration": 0.548513841, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783460 + }, + { + "status": 0, + "executed": 1692783760 + }, + { + "status": 0, + "executed": 1692784060 + }, + { + "status": 0, + "executed": 1692784361 + }, + { + "status": 0, + "executed": 1692784661 + }, + { + "status": 0, + "executed": 1692784961 + }, + { + "status": 0, + "executed": 1692785261 + }, + { + "status": 0, + "executed": 1692785562 + }, + { + "status": 0, + "executed": 1692785862 + }, + { + "status": 0, + "executed": 1692786162 + }, + { + "status": 0, + "executed": 1692786463 + }, + { + "status": 0, + "executed": 1692786763 + }, + { + "status": 0, + "executed": 1692787063 + }, + { + "status": 0, + "executed": 1692787363 + }, + { + "status": 0, + "executed": 1692787664 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788265 + }, + { + "status": 0, + "executed": 1692788565 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789465, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae11.333 ingressOctets=108444633189865,egressOctets=136031341400936,ingressErrors=0,egressErrors=0,ingressOctetsv6=1506230538,egressOctetsv6=607616025029,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae11.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a67f0535-2b72-4ffb-833a-622ccd248752", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789466 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae11.334 747", + "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, + "duration": 0.593239479, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784057 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785258 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786159 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787360 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788261 + }, + { + "status": 0, + "executed": 1692788561 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae11.334 ingressOctets=358117912062,egressOctets=3143907849078,ingressErrors=0,egressErrors=0,ingressOctetsv6=1135823038,egressOctetsv6=607644386,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae11.334", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e5ee97d9-925d-4844-9f4f-5b4c53712bbf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789462 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae3 541", + "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, + "duration": 0.713954673, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783427 + }, + { + "status": 0, + "executed": 1692783727 + }, + { + "status": 0, + "executed": 1692784027 + }, + { + "status": 0, + "executed": 1692784327 + }, + { + "status": 0, + "executed": 1692784627 + }, + { + "status": 0, + "executed": 1692784927 + }, + { + "status": 0, + "executed": 1692785227 + }, + { + "status": 0, + "executed": 1692785527 + }, + { + "status": 0, + "executed": 1692785828 + }, + { + "status": 0, + "executed": 1692786128 + }, + { + "status": 0, + "executed": 1692786429 + }, + { + "status": 0, + "executed": 1692786729 + }, + { + "status": 0, + "executed": 1692787029 + }, + { + "status": 0, + "executed": 1692787329 + }, + { + "status": 0, + "executed": 1692787629 + }, + { + "status": 0, + "executed": 1692787930 + }, + { + "status": 0, + "executed": 1692788230 + }, + { + "status": 0, + "executed": 1692788530 + }, + { + "status": 0, + "executed": 1692788830 + }, + { + "status": 0, + "executed": 1692789132 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae3 ingressOctets=78607291750419,egressOctets=684182787776101,ingressErrors=6,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34851, + "occurrences_watermark": 34851, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f85f5996-601b-4e4c-a392-54f24190eb2b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789434 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae3.0 736", + "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, + "duration": 0.619981491, + "executed": 1692789469, + "history": [ + { + "status": 0, + "executed": 1692783464 + }, + { + "status": 0, + "executed": 1692783764 + }, + { + "status": 0, + "executed": 1692784065 + }, + { + "status": 0, + "executed": 1692784365 + }, + { + "status": 0, + "executed": 1692784665 + }, + { + "status": 0, + "executed": 1692784965 + }, + { + "status": 0, + "executed": 1692785266 + }, + { + "status": 0, + "executed": 1692785566 + }, + { + "status": 0, + "executed": 1692785866 + }, + { + "status": 0, + "executed": 1692786166 + }, + { + "status": 0, + "executed": 1692786467 + }, + { + "status": 0, + "executed": 1692786767 + }, + { + "status": 0, + "executed": 1692787067 + }, + { + "status": 0, + "executed": 1692787368 + }, + { + "status": 0, + "executed": 1692787668 + }, + { + "status": 0, + "executed": 1692787968 + }, + { + "status": 0, + "executed": 1692788269 + }, + { + "status": 0, + "executed": 1692788569 + }, + { + "status": 0, + "executed": 1692788869 + }, + { + "status": 0, + "executed": 1692789169 + }, + { + "status": 0, + "executed": 1692789469 + } + ], + "issued": 1692789469, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae3.0 ingressOctets=78605911543228,egressOctets=684181342074570,ingressErrors=0,egressErrors=0,ingressOctetsv6=39949988217,egressOctetsv6=17247626786,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789469, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d4a7d7f9-a717-4fc1-8a33-1452e8d54cc7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789470 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae4 542", + "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, + "duration": 0.575034065, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae4 ingressOctets=287361237611153,egressOctets=371529166156057,ingressErrors=7076,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2706d6f1-b1b6-4959-b486-02979c5acf3d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae4.0 578", + "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, + "duration": 0.533374301, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae4.0 ingressOctets=287359878112848,egressOctets=371525526934787,ingressErrors=0,egressErrors=0,ingressOctetsv6=2031665698910,egressOctetsv6=35071015961304,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4015aabc-f67a-4abc-8769-e2c89b6e98ad", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae8 546", + "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, + "duration": 0.532697609, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae8 ingressOctets=51139732019067,egressOctets=24562985868473,ingressErrors=27002769,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ec021ab1-f8d8-4c64-9983-0a69da8b9ef1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ae8.0 636", + "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, + "duration": 0.614868198, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae8.0 ingressOctets=51138663428582,egressOctets=24561097726364,ingressErrors=0,egressErrors=0,ingressOctetsv6=46525314028,egressOctetsv6=45352808619,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae8.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "289670bb-814f-4886-8355-cdb5cc425678", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "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, + "duration": 0.579371637, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783451 + }, + { + "status": 0, + "executed": 1692783751 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784352 + }, + { + "status": 0, + "executed": 1692784652 + }, + { + "status": 0, + "executed": 1692784952 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785553 + }, + { + "status": 0, + "executed": 1692785853 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786754 + }, + { + "status": 0, + "executed": 1692787054 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787655 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae9 ingressOctets=985958124657208,egressOctets=723894007681683,ingressErrors=6,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3c0fd63d-6ed8-4e4d-a9fd-042e0f66c9f8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789456 + }, + { + "check": { + "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, + "duration": 0.602060013, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ae9.0 ingressOctets=985957803374418,egressOctets=723885354260255,ingressErrors=0,egressErrors=0,ingressOctetsv6=77777946055456,egressOctetsv6=220665472783895,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ae9.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "87a5620a-dc5d-4989-bf65-bd9736cb8db0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net dsc.0 619", + "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, + "duration": 0.577345766, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=dsc.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-dsc.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1a55baf4-176f-4af3-afce-70eb3df0b8d1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net et-3/0/0 715", + "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, + "duration": 0.6548674, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=et-3/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-et-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "463cb3f1-f53e-4cce-bc18-a1d6e07d3b17", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net et-4/0/0 716", + "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, + "duration": 0.536996509, + "executed": 1692789470, + "history": [ + { + "status": 0, + "executed": 1692783465 + }, + { + "status": 0, + "executed": 1692783765 + }, + { + "status": 0, + "executed": 1692784066 + }, + { + "status": 0, + "executed": 1692784366 + }, + { + "status": 0, + "executed": 1692784666 + }, + { + "status": 0, + "executed": 1692784967 + }, + { + "status": 0, + "executed": 1692785267 + }, + { + "status": 0, + "executed": 1692785567 + }, + { + "status": 0, + "executed": 1692785867 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786468 + }, + { + "status": 0, + "executed": 1692786768 + }, + { + "status": 0, + "executed": 1692787068 + }, + { + "status": 0, + "executed": 1692787369 + }, + { + "status": 0, + "executed": 1692787669 + }, + { + "status": 0, + "executed": 1692787969 + }, + { + "status": 0, + "executed": 1692788270 + }, + { + "status": 0, + "executed": 1692788570 + }, + { + "status": 0, + "executed": 1692788870 + }, + { + "status": 0, + "executed": 1692789170 + }, + { + "status": 0, + "executed": 1692789470 + } + ], + "issued": 1692789470, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=et-4/0/0 ingressOctets=135184265205194,egressOctets=56269578854737,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789470, + "occurrences": 19504, + "occurrences_watermark": 19504, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-et-4-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "993799d0-d79f-4591-a043-3efdc6f8f3b5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789471 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/0 583", + "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, + "duration": 0.575090618, + "executed": 1692789717, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784314 + }, + { + "status": 0, + "executed": 1692784614 + }, + { + "status": 0, + "executed": 1692784914 + }, + { + "status": 0, + "executed": 1692785214 + }, + { + "status": 0, + "executed": 1692785514 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787316 + }, + { + "status": 0, + "executed": 1692787616 + }, + { + "status": 0, + "executed": 1692787916 + }, + { + "status": 0, + "executed": 1692788217 + }, + { + "status": 0, + "executed": 1692788517 + }, + { + "status": 0, + "executed": 1692788817 + }, + { + "status": 0, + "executed": 1692789117 + }, + { + "status": 0, + "executed": 1692789417 + }, + { + "status": 0, + "executed": 1692789717 + } + ], + "issued": 1692789717, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/0 ingressOctets=2896001677,egressOctets=4442523936,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789717, + "occurrences": 34852, + "occurrences_watermark": 34852, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "65a2151d-a240-4f34-8907-372536459ec6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789718 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/0.124 618", + "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, + "duration": 0.636462839, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/0.124 ingressOctets=856216016,egressOctets=2568968042,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-0.124", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0d6dbd56-8ff4-4237-9b41-c6873dccfac7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/0.21 595", + "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, + "duration": 0.729210223, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785595 + }, + { + "status": 0, + "executed": 1692785895 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/0.21 ingressOctets=1733787969,egressOctets=937870214,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34852, + "occurrences_watermark": 34852, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-0.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b9075312-c088-4503-9d0d-c0b84b5ad778", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/0.60 599", + "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, + "duration": 0.55324542, + "executed": 1692789516, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785613 + }, + { + "status": 0, + "executed": 1692785913 + }, + { + "status": 0, + "executed": 1692786214 + }, + { + "status": 0, + "executed": 1692786514 + }, + { + "status": 0, + "executed": 1692786814 + }, + { + "status": 0, + "executed": 1692787114 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787715 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788916 + }, + { + "status": 0, + "executed": 1692789216 + }, + { + "status": 0, + "executed": 1692789516 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/0.60 ingressOctets=0,egressOctets=560765881,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789516, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-0.60", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7d41e56b-107d-4b74-8d45-2c284d421e51", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/1 584", + "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, + "duration": 0.646251966, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783427 + }, + { + "status": 0, + "executed": 1692783727 + }, + { + "status": 0, + "executed": 1692784027 + }, + { + "status": 0, + "executed": 1692784327 + }, + { + "status": 0, + "executed": 1692784627 + }, + { + "status": 0, + "executed": 1692784927 + }, + { + "status": 0, + "executed": 1692785227 + }, + { + "status": 0, + "executed": 1692785527 + }, + { + "status": 0, + "executed": 1692785828 + }, + { + "status": 0, + "executed": 1692786128 + }, + { + "status": 0, + "executed": 1692786429 + }, + { + "status": 0, + "executed": 1692786729 + }, + { + "status": 0, + "executed": 1692787029 + }, + { + "status": 0, + "executed": 1692787329 + }, + { + "status": 0, + "executed": 1692787629 + }, + { + "status": 0, + "executed": 1692787930 + }, + { + "status": 0, + "executed": 1692788230 + }, + { + "status": 0, + "executed": 1692788530 + }, + { + "status": 0, + "executed": 1692788830 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a6dc3aba-d601-47d7-8903-80b6151e6e99", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/2 585", + "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, + "duration": 0.595230968, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783451 + }, + { + "status": 0, + "executed": 1692783751 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784352 + }, + { + "status": 0, + "executed": 1692784652 + }, + { + "status": 0, + "executed": 1692784952 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785553 + }, + { + "status": 0, + "executed": 1692785853 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786754 + }, + { + "status": 0, + "executed": 1692787054 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787655 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6b5a589d-3f24-4b2a-8ced-9f39b1c23c84", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/3 586", + "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, + "duration": 0.643024936, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "426b3468-25d0-4fbd-a904-f3327dd10f69", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789454 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/4 587", + "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, + "duration": 0.670103805, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f8a96cb-7844-436c-9033-76755036c681", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/5 588", + "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, + "duration": 0.569107363, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783460 + }, + { + "status": 0, + "executed": 1692783760 + }, + { + "status": 0, + "executed": 1692784060 + }, + { + "status": 0, + "executed": 1692784361 + }, + { + "status": 0, + "executed": 1692784661 + }, + { + "status": 0, + "executed": 1692784961 + }, + { + "status": 0, + "executed": 1692785261 + }, + { + "status": 0, + "executed": 1692785562 + }, + { + "status": 0, + "executed": 1692785862 + }, + { + "status": 0, + "executed": 1692786162 + }, + { + "status": 0, + "executed": 1692786463 + }, + { + "status": 0, + "executed": 1692786763 + }, + { + "status": 0, + "executed": 1692787063 + }, + { + "status": 0, + "executed": 1692787363 + }, + { + "status": 0, + "executed": 1692787664 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788265 + }, + { + "status": 0, + "executed": 1692788565 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789465, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "da4fad36-7c06-4029-ac27-a62a1535f948", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789466 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/6 589", + "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, + "duration": 0.601922065, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e7e5aae5-d3b3-4a08-9d3b-23b5a5f74891", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/7 590", + "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, + "duration": 0.611230323, + "executed": 1692789721, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785818 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786719 + }, + { + "status": 0, + "executed": 1692787019 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787920 + }, + { + "status": 0, + "executed": 1692788220 + }, + { + "status": 0, + "executed": 1692788520 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789121 + }, + { + "status": 0, + "executed": 1692789421 + }, + { + "status": 0, + "executed": 1692789721 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789721, + "occurrences": 34851, + "occurrences_watermark": 34851, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d3e8c845-9a56-40fd-954c-311d2566dbd7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/8 591", + "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, + "duration": 0.584252248, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783523 + }, + { + "status": 0, + "executed": 1692783823 + }, + { + "status": 0, + "executed": 1692784124 + }, + { + "status": 0, + "executed": 1692784424 + }, + { + "status": 0, + "executed": 1692784724 + }, + { + "status": 0, + "executed": 1692785024 + }, + { + "status": 0, + "executed": 1692785324 + }, + { + "status": 0, + "executed": 1692785625 + }, + { + "status": 0, + "executed": 1692785925 + }, + { + "status": 0, + "executed": 1692786226 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786826 + }, + { + "status": 0, + "executed": 1692787126 + }, + { + "status": 0, + "executed": 1692787426 + }, + { + "status": 0, + "executed": 1692787727 + }, + { + "status": 0, + "executed": 1692788027 + }, + { + "status": 0, + "executed": 1692788327 + }, + { + "status": 0, + "executed": 1692788627 + }, + { + "status": 0, + "executed": 1692788928 + }, + { + "status": 0, + "executed": 1692789228 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789527, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "329632b2-fea4-4f40-bd74-5db9e1513da1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/2/9 593", + "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, + "duration": 0.547622521, + "executed": 1692789713, + "history": [ + { + "status": 0, + "executed": 1692783710 + }, + { + "status": 0, + "executed": 1692784010 + }, + { + "status": 0, + "executed": 1692784310 + }, + { + "status": 0, + "executed": 1692784611 + }, + { + "status": 0, + "executed": 1692784911 + }, + { + "status": 0, + "executed": 1692785211 + }, + { + "status": 0, + "executed": 1692785511 + }, + { + "status": 0, + "executed": 1692785811 + }, + { + "status": 0, + "executed": 1692786112 + }, + { + "status": 0, + "executed": 1692786412 + }, + { + "status": 0, + "executed": 1692786712 + }, + { + "status": 0, + "executed": 1692787012 + }, + { + "status": 0, + "executed": 1692787313 + }, + { + "status": 0, + "executed": 1692787613 + }, + { + "status": 0, + "executed": 1692787913 + }, + { + "status": 0, + "executed": 1692788213 + }, + { + "status": 0, + "executed": 1692788513 + }, + { + "status": 0, + "executed": 1692788814 + }, + { + "status": 0, + "executed": 1692789114 + }, + { + "status": 0, + "executed": 1692789414 + }, + { + "status": 0, + "executed": 1692789713 + } + ], + "issued": 1692789713, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789713, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5a4e8f07-7912-4eea-a01c-25f413d02d17", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789714 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/0 603", + "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, + "duration": 0.531181401, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "35c92012-7a67-4a3c-8e20-fb1bbf723e3d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/1 604", + "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, + "duration": 0.611340263, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783451 + }, + { + "status": 0, + "executed": 1692783751 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784352 + }, + { + "status": 0, + "executed": 1692784652 + }, + { + "status": 0, + "executed": 1692784952 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785553 + }, + { + "status": 0, + "executed": 1692785853 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786754 + }, + { + "status": 0, + "executed": 1692787054 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787655 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34852, + "occurrences_watermark": 34852, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1ada30bd-7bd5-488f-b8bc-7448d89d7ba7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/2 605", + "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, + "duration": 0.544060756, + "executed": 1692789452, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784048 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785249 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786450 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787351 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788852 + }, + { + "status": 0, + "executed": 1692789152 + }, + { + "status": 0, + "executed": 1692789452 + } + ], + "issued": 1692789452, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789452, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "df6a73eb-c66f-4bf4-b6f7-2319527f027c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/3 606", + "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, + "duration": 0.58428001, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787951 + }, + { + "status": 0, + "executed": 1692788251 + }, + { + "status": 0, + "executed": 1692788551 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "06ad1212-c6f0-4b11-bcaa-b5667b4098a8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789452 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/4 607", + "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, + "duration": 0.663200742, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9a913665-5226-4727-84ca-cd906bc11d67", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/5 608", + "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, + "duration": 0.604242742, + "executed": 1692789457, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784053 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785254 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786155 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787356 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788857 + }, + { + "status": 0, + "executed": 1692789157 + }, + { + "status": 0, + "executed": 1692789457 + } + ], + "issued": 1692789457, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789457, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a2ba11ca-de85-4d02-bacb-f01a065b0699", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/6 609", + "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, + "duration": 0.539280057, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a8fb61d3-e134-4de2-9f73-6259e3ab2449", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789473 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/7 611", + "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, + "duration": 0.69774276, + "executed": 1692789441, + "history": [ + { + "status": 0, + "executed": 1692783437 + }, + { + "status": 0, + "executed": 1692783737 + }, + { + "status": 0, + "executed": 1692784038 + }, + { + "status": 0, + "executed": 1692784338 + }, + { + "status": 0, + "executed": 1692784638 + }, + { + "status": 0, + "executed": 1692784938 + }, + { + "status": 0, + "executed": 1692785239 + }, + { + "status": 0, + "executed": 1692785539 + }, + { + "status": 0, + "executed": 1692785839 + }, + { + "status": 0, + "executed": 1692786139 + }, + { + "status": 0, + "executed": 1692786440 + }, + { + "status": 0, + "executed": 1692786740 + }, + { + "status": 0, + "executed": 1692787040 + }, + { + "status": 0, + "executed": 1692787340 + }, + { + "status": 0, + "executed": 1692787641 + }, + { + "status": 0, + "executed": 1692787941 + }, + { + "status": 0, + "executed": 1692788241 + }, + { + "status": 0, + "executed": 1692788541 + }, + { + "status": 0, + "executed": 1692788841 + }, + { + "status": 0, + "executed": 1692789141 + }, + { + "status": 0, + "executed": 1692789441 + } + ], + "issued": 1692789441, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789441, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "965281e8-2da3-486e-a069-ef9f62c8f422", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789442 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/8 612", + "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, + "duration": 2.955023396, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc5ff8fa-77aa-444a-9245-27939e28b1e6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789522 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net ge-0/3/9 613", + "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, + "duration": 0.520293275, + "executed": 1692789717, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784314 + }, + { + "status": 0, + "executed": 1692784614 + }, + { + "status": 0, + "executed": 1692784914 + }, + { + "status": 0, + "executed": 1692785214 + }, + { + "status": 0, + "executed": 1692785514 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787316 + }, + { + "status": 0, + "executed": 1692787616 + }, + { + "status": 0, + "executed": 1692787916 + }, + { + "status": 0, + "executed": 1692788217 + }, + { + "status": 0, + "executed": 1692788517 + }, + { + "status": 0, + "executed": 1692788817 + }, + { + "status": 0, + "executed": 1692789117 + }, + { + "status": 0, + "executed": 1692789417 + }, + { + "status": 0, + "executed": 1692789717 + } + ], + "issued": 1692789717, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=ge-0/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789717, + "occurrences": 34850, + "occurrences_watermark": 34850, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-ge-0-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a14272c8-2ea3-4fd6-8d33-7a9aa4e15953", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789718 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net lt-0/0/0 655", + "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, + "duration": 0.588077507, + "executed": 1692789498, + "history": [ + { + "status": 0, + "executed": 1692783493 + }, + { + "status": 0, + "executed": 1692783793 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784994 + }, + { + "status": 0, + "executed": 1692785294 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787096 + }, + { + "status": 0, + "executed": 1692787397 + }, + { + "status": 0, + "executed": 1692787697 + }, + { + "status": 0, + "executed": 1692787998 + }, + { + "status": 0, + "executed": 1692788298 + }, + { + "status": 0, + "executed": 1692788598 + }, + { + "status": 0, + "executed": 1692788898 + }, + { + "status": 0, + "executed": 1692789199 + }, + { + "status": 0, + "executed": 1692789498 + } + ], + "issued": 1692789498, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=lt-0/0/0 ingressOctets=175712142524,egressOctets=180293115073,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789498, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-lt-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dc3d1a31-5d46-446d-aa74-103b517c2e27", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789499 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net lt-0/0/0.16 658", + "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, + "duration": 0.588168323, + "executed": 1692789488, + "history": [ + { + "status": 0, + "executed": 1692783484 + }, + { + "status": 0, + "executed": 1692783784 + }, + { + "status": 0, + "executed": 1692784084 + }, + { + "status": 0, + "executed": 1692784384 + }, + { + "status": 0, + "executed": 1692784684 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785285 + }, + { + "status": 0, + "executed": 1692785585 + }, + { + "status": 0, + "executed": 1692785885 + }, + { + "status": 0, + "executed": 1692786186 + }, + { + "status": 0, + "executed": 1692786486 + }, + { + "status": 0, + "executed": 1692786786 + }, + { + "status": 0, + "executed": 1692787086 + }, + { + "status": 0, + "executed": 1692787387 + }, + { + "status": 0, + "executed": 1692787687 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788288 + }, + { + "status": 0, + "executed": 1692788588 + }, + { + "status": 0, + "executed": 1692788888 + }, + { + "status": 0, + "executed": 1692789188 + }, + { + "status": 0, + "executed": 1692789488 + } + ], + "issued": 1692789488, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=lt-0/0/0.16 ingressOctets=425071841,egressOctets=179867975172,ingressErrors=0,egressErrors=0,ingressOctetsv6=518544,egressOctetsv6=1396188505,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789488, + "occurrences": 34851, + "occurrences_watermark": 34851, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-lt-0-0-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1433b730-da53-4bd0-949c-9a55bbc5105e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789489 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net lt-0/0/0.61 659", + "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, + "duration": 0.608962586, + "executed": 1692789721, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785818 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786719 + }, + { + "status": 0, + "executed": 1692787019 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787920 + }, + { + "status": 0, + "executed": 1692788220 + }, + { + "status": 0, + "executed": 1692788520 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789121 + }, + { + "status": 0, + "executed": 1692789421 + }, + { + "status": 0, + "executed": 1692789721 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=lt-0/0/0.61 ingressOctets=175352656287,egressOctets=426056083,ingressErrors=0,egressErrors=0,ingressOctetsv6=52858055459,egressOctetsv6=1277375,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789721, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-lt-0-0-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "99792e5d-f566-4d47-ab56-80d92d4b91e0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-0/0/0 526", + "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, + "duration": 0.57790574, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786123 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-0/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2b395331-4bbc-45fd-a22b-379a163042f0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-0/0/1 527", + "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, + "duration": 0.597718751, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-0/0/1 ingressOctets=12614487676240,egressOctets=5762723975292,ingressErrors=26990452,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "45a08259-9bbe-47d2-9a75-3f06a5bc9611", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-0/1/0 528", + "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, + "duration": 0.60078304, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783481 + }, + { + "status": 0, + "executed": 1692783781 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784982 + }, + { + "status": 0, + "executed": 1692785282 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786183 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787384 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787985 + }, + { + "status": 0, + "executed": 1692788285 + }, + { + "status": 0, + "executed": 1692788585 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789485, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-0/1/0 ingressOctets=248848502995638,egressOctets=154181643195567,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=22208785\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "842670b0-a142-4ed1-9255-7507b01ec17f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-0/1/1 529", + "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, + "duration": 0.584131018, + "executed": 1692789472, + "history": [ + { + "status": 0, + "executed": 1692783467 + }, + { + "status": 0, + "executed": 1692783767 + }, + { + "status": 0, + "executed": 1692784067 + }, + { + "status": 0, + "executed": 1692784368 + }, + { + "status": 0, + "executed": 1692784668 + }, + { + "status": 0, + "executed": 1692784968 + }, + { + "status": 0, + "executed": 1692785268 + }, + { + "status": 0, + "executed": 1692785569 + }, + { + "status": 0, + "executed": 1692785869 + }, + { + "status": 0, + "executed": 1692786169 + }, + { + "status": 0, + "executed": 1692786470 + }, + { + "status": 0, + "executed": 1692786770 + }, + { + "status": 0, + "executed": 1692787070 + }, + { + "status": 0, + "executed": 1692787370 + }, + { + "status": 0, + "executed": 1692787671 + }, + { + "status": 0, + "executed": 1692787971 + }, + { + "status": 0, + "executed": 1692788271 + }, + { + "status": 0, + "executed": 1692788571 + }, + { + "status": 0, + "executed": 1692788872 + }, + { + "status": 0, + "executed": 1692789172 + }, + { + "status": 0, + "executed": 1692789472 + } + ], + "issued": 1692789471, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-0/1/1 ingressOctets=244378672260031,egressOctets=154077623245912,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=22687578\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789472, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b771a3b0-159c-40f3-add4-df3cafa05b1e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789472 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/0/0 534", + "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, + "duration": 0.583962152, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-1/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c1db4a50-cef3-4a9b-8216-cf894885594d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/0/1 535", + "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, + "duration": 0.553911869, + "executed": 1692789716, + "history": [ + { + "status": 0, + "executed": 1692783713 + }, + { + "status": 0, + "executed": 1692784013 + }, + { + "status": 0, + "executed": 1692784313 + }, + { + "status": 0, + "executed": 1692784613 + }, + { + "status": 0, + "executed": 1692784913 + }, + { + "status": 0, + "executed": 1692785213 + }, + { + "status": 0, + "executed": 1692785513 + }, + { + "status": 0, + "executed": 1692785814 + }, + { + "status": 0, + "executed": 1692786114 + }, + { + "status": 0, + "executed": 1692786415 + }, + { + "status": 0, + "executed": 1692786714 + }, + { + "status": 0, + "executed": 1692787015 + }, + { + "status": 0, + "executed": 1692787315 + }, + { + "status": 0, + "executed": 1692787615 + }, + { + "status": 0, + "executed": 1692787915 + }, + { + "status": 0, + "executed": 1692788216 + }, + { + "status": 0, + "executed": 1692788516 + }, + { + "status": 0, + "executed": 1692788816 + }, + { + "status": 0, + "executed": 1692789116 + }, + { + "status": 0, + "executed": 1692789416 + }, + { + "status": 0, + "executed": 1692789716 + } + ], + "issued": 1692789716, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-1/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789716, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a3128a50-81fa-4e7d-9d8d-f0ef51cf7c30", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789716 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/1/0 536", + "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, + "duration": 0.708119598, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783426 + }, + { + "status": 0, + "executed": 1692783726 + }, + { + "status": 0, + "executed": 1692784026 + }, + { + "status": 0, + "executed": 1692784326 + }, + { + "status": 0, + "executed": 1692784626 + }, + { + "status": 0, + "executed": 1692784926 + }, + { + "status": 0, + "executed": 1692785226 + }, + { + "status": 0, + "executed": 1692785526 + }, + { + "status": 0, + "executed": 1692785827 + }, + { + "status": 0, + "executed": 1692786127 + }, + { + "status": 0, + "executed": 1692786428 + }, + { + "status": 0, + "executed": 1692786728 + }, + { + "status": 0, + "executed": 1692787028 + }, + { + "status": 0, + "executed": 1692787328 + }, + { + "status": 0, + "executed": 1692787628 + }, + { + "status": 0, + "executed": 1692787929 + }, + { + "status": 0, + "executed": 1692788229 + }, + { + "status": 0, + "executed": 1692788529 + }, + { + "status": 0, + "executed": 1692788829 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-1/1/0 ingressOctets=19599991031989,egressOctets=166956419080560,ingressErrors=2,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 19505, + "occurrences_watermark": 19505, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d3aa7c48-6250-4226-913b-49e81c927e02", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/1/1 537", + "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, + "duration": 0.582211788, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-1/1/1 ingressOctets=19659353562170,egressOctets=166909747972953,ingressErrors=3,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-1-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "37df3b19-7fb0-4f79-9502-859ee9e63470", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/2/0 674", + "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, + "duration": 0.577100766, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-1/2/0 ingressOctets=19655962227529,egressOctets=166758369184424,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1bec8ff4-fe2a-4b74-88bf-d0b330e020f2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/2/1 673", + "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, + "duration": 0.557269265, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-1/2/1 ingressOctets=19691985492610,egressOctets=183557955353228,ingressErrors=1,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "38fc431d-451c-4286-bca7-ec38d04bc0f9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/3/0 675", + "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, + "duration": 0.631788169, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-1/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "91924447-042e-43c1-b487-667d4c2c2c8c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-1/3/1 676", + "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, + "duration": 0.559440033, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-1/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-1-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9c5ae325-0c62-4377-a980-4c354f83631f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/0 684", + "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, + "duration": 0.577018527, + "executed": 1692789718, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789718 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789718, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "937ebd06-c950-4f6c-b749-62769826d9e7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/1 685", + "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, + "duration": 0.524830909, + "executed": 1692789511, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784107 + }, + { + "status": 0, + "executed": 1692784407 + }, + { + "status": 0, + "executed": 1692784707 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785608 + }, + { + "status": 0, + "executed": 1692785908 + }, + { + "status": 0, + "executed": 1692786209 + }, + { + "status": 0, + "executed": 1692786509 + }, + { + "status": 0, + "executed": 1692786809 + }, + { + "status": 0, + "executed": 1692787109 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787710 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788911 + }, + { + "status": 0, + "executed": 1692789211 + }, + { + "status": 0, + "executed": 1692789511 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/0/1 ingressOctets=236098901860671,egressOctets=153951200770884,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=20480611\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789511, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f3e52f50-3f7e-4040-9843-c87a380698d1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789512 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/2 686", + "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, + "duration": 0.666813548, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783428 + }, + { + "status": 0, + "executed": 1692783728 + }, + { + "status": 0, + "executed": 1692784029 + }, + { + "status": 0, + "executed": 1692784329 + }, + { + "status": 0, + "executed": 1692784629 + }, + { + "status": 0, + "executed": 1692784929 + }, + { + "status": 0, + "executed": 1692785229 + }, + { + "status": 0, + "executed": 1692785529 + }, + { + "status": 0, + "executed": 1692785830 + }, + { + "status": 0, + "executed": 1692786130 + }, + { + "status": 0, + "executed": 1692786431 + }, + { + "status": 0, + "executed": 1692786731 + }, + { + "status": 0, + "executed": 1692787031 + }, + { + "status": 0, + "executed": 1692787331 + }, + { + "status": 0, + "executed": 1692787631 + }, + { + "status": 0, + "executed": 1692787932 + }, + { + "status": 0, + "executed": 1692788232 + }, + { + "status": 0, + "executed": 1692788532 + }, + { + "status": 0, + "executed": 1692788832 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/0/2 ingressOctets=239600229504676,egressOctets=153810191309016,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=16258351\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ac6c4b8c-9099-4d02-84c1-b07ab9ef0c83", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/3 687", + "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, + "duration": 0.571662833, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783850 + }, + { + "status": 0, + "executed": 1692784150 + }, + { + "status": 0, + "executed": 1692784450 + }, + { + "status": 0, + "executed": 1692784750 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786252 + }, + { + "status": 0, + "executed": 1692786551 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787452 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788053 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/0/3 ingressOctets=71742794205742,egressOctets=90756078449649,ingressErrors=123,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0f0c2682-ee20-4b44-8ea8-ec541118e0c8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/4 688", + "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, + "duration": 0.566695152, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/0/4 ingressOctets=71861871802131,egressOctets=93954490161589,ingressErrors=84,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34851, + "occurrences_watermark": 34851, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e74824b9-78ac-4d1c-ad0a-7eb1af31e2d9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/5 689", + "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, + "duration": 0.589691037, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/0/5 ingressOctets=72006450974550,egressOctets=96401551893585,ingressErrors=6764,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5fd42e60-7937-44a7-8848-dc125a70e1a8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/6 690", + "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, + "duration": 0.57684443, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783498 + }, + { + "status": 0, + "executed": 1692783798 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692784999 + }, + { + "status": 0, + "executed": 1692785299 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786200 + }, + { + "status": 0, + "executed": 1692786500 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787401 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788002 + }, + { + "status": 0, + "executed": 1692788302 + }, + { + "status": 0, + "executed": 1692788602 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/0/6 ingressOctets=71750120915488,egressOctets=90416881929173,ingressErrors=105,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "231edfc1-a0b8-4239-9a19-077a6438257e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/7 691", + "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, + "duration": 0.612509596, + "executed": 1692789452, + "history": [ + { + "status": 0, + "executed": 1692783447 + }, + { + "status": 0, + "executed": 1692783747 + }, + { + "status": 0, + "executed": 1692784048 + }, + { + "status": 0, + "executed": 1692784348 + }, + { + "status": 0, + "executed": 1692784648 + }, + { + "status": 0, + "executed": 1692784948 + }, + { + "status": 0, + "executed": 1692785249 + }, + { + "status": 0, + "executed": 1692785549 + }, + { + "status": 0, + "executed": 1692785849 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786450 + }, + { + "status": 0, + "executed": 1692786750 + }, + { + "status": 0, + "executed": 1692787050 + }, + { + "status": 0, + "executed": 1692787351 + }, + { + "status": 0, + "executed": 1692787651 + }, + { + "status": 0, + "executed": 1692787951 + }, + { + "status": 0, + "executed": 1692788251 + }, + { + "status": 0, + "executed": 1692788551 + }, + { + "status": 0, + "executed": 1692788852 + }, + { + "status": 0, + "executed": 1692789152 + }, + { + "status": 0, + "executed": 1692789452 + } + ], + "issued": 1692789452, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/0/7 ingressOctets=12988570872828,egressOctets=6189089358218,ingressErrors=6,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789452, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b7ecb2da-82ff-44d8-a0bd-045a6e1bf077", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789452 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/8 692", + "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, + "duration": 0.617386063, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/0/8 ingressOctets=12738536815100,egressOctets=6088971711637,ingressErrors=11214,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 34848, + "occurrences_watermark": 34848, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-0-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "08506f35-77b7-4b3a-bf8c-665ffbcc8ea5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/0/9 693", + "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, + "duration": 0.569524354, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/0/9 ingressOctets=12798137083973,egressOctets=6521567724938,ingressErrors=1097,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-0-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9a2d9220-6a22-4fdb-9629-7bd3db2143a4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/2/0 768", + "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, + "duration": 0.590895939, + "executed": 1692789483, + "history": [ + { + "status": 0, + "executed": 1692783479 + }, + { + "status": 0, + "executed": 1692783779 + }, + { + "status": 0, + "executed": 1692784080 + }, + { + "status": 0, + "executed": 1692784380 + }, + { + "status": 0, + "executed": 1692784680 + }, + { + "status": 0, + "executed": 1692784980 + }, + { + "status": 0, + "executed": 1692785280 + }, + { + "status": 0, + "executed": 1692785581 + }, + { + "status": 0, + "executed": 1692785881 + }, + { + "status": 0, + "executed": 1692786181 + }, + { + "status": 0, + "executed": 1692786481 + }, + { + "status": 0, + "executed": 1692786782 + }, + { + "status": 0, + "executed": 1692787082 + }, + { + "status": 0, + "executed": 1692787382 + }, + { + "status": 0, + "executed": 1692787683 + }, + { + "status": 0, + "executed": 1692787983 + }, + { + "status": 0, + "executed": 1692788283 + }, + { + "status": 0, + "executed": 1692788583 + }, + { + "status": 0, + "executed": 1692788884 + }, + { + "status": 0, + "executed": 1692789184 + }, + { + "status": 0, + "executed": 1692789483 + } + ], + "issued": 1692789483, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/2/0 ingressOctets=50838092937,egressOctets=3899269529,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789483, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "141ce2c2-27e4-4238-bee4-6c6ee56d5cfb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789484 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/2/1 769", + "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, + "duration": 0.619001837, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784621 + }, + { + "status": 0, + "executed": 1692784921 + }, + { + "status": 0, + "executed": 1692785221 + }, + { + "status": 0, + "executed": 1692785521 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786422 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787323 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/2/1 ingressOctets=63740922839,egressOctets=3501679677,ingressErrors=166,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34849, + "occurrences_watermark": 34849, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aeee3f78-727e-440a-8ecc-766896da0a10", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789425 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/2/2 770", + "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, + "duration": 0.576805444, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d6406ad3-d34a-4b22-a99a-9d42484e8db3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/2/3 771", + "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, + "duration": 0.581541309, + "executed": 1692789509, + "history": [ + { + "status": 0, + "executed": 1692783505 + }, + { + "status": 0, + "executed": 1692783805 + }, + { + "status": 0, + "executed": 1692784106 + }, + { + "status": 0, + "executed": 1692784406 + }, + { + "status": 0, + "executed": 1692784706 + }, + { + "status": 0, + "executed": 1692785006 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785607 + }, + { + "status": 0, + "executed": 1692785907 + }, + { + "status": 0, + "executed": 1692786207 + }, + { + "status": 0, + "executed": 1692786507 + }, + { + "status": 0, + "executed": 1692786808 + }, + { + "status": 0, + "executed": 1692787108 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787709 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788910 + }, + { + "status": 0, + "executed": 1692789210 + }, + { + "status": 0, + "executed": 1692789509 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/2/3 ingressOctets=53018109251986,egressOctets=3960076677259,ingressErrors=9,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789509, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "225b8f1c-df31-425e-bdf9-a91a7ce8d79c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789510 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/2/3.0 799", + "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, + "duration": 0.685032769, + "executed": 1692789424, + "history": [ + { + "status": 0, + "executed": 1692783420 + }, + { + "status": 0, + "executed": 1692783720 + }, + { + "status": 0, + "executed": 1692784020 + }, + { + "status": 0, + "executed": 1692784320 + }, + { + "status": 0, + "executed": 1692784620 + }, + { + "status": 0, + "executed": 1692784920 + }, + { + "status": 0, + "executed": 1692785220 + }, + { + "status": 0, + "executed": 1692785520 + }, + { + "status": 0, + "executed": 1692785821 + }, + { + "status": 0, + "executed": 1692786121 + }, + { + "status": 0, + "executed": 1692786422 + }, + { + "status": 0, + "executed": 1692786722 + }, + { + "status": 0, + "executed": 1692787022 + }, + { + "status": 0, + "executed": 1692787322 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787922 + }, + { + "status": 0, + "executed": 1692788223 + }, + { + "status": 0, + "executed": 1692788523 + }, + { + "status": 0, + "executed": 1692788823 + }, + { + "status": 0, + "executed": 1692789124 + }, + { + "status": 0, + "executed": 1692789424 + } + ], + "issued": 1692789424, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/2/3.0 ingressOctets=53018109251124,egressOctets=3960130610244,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789424, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-2-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2f45847b-32f7-41e3-97db-b6b10594e91f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789424 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/2/4 772", + "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, + "duration": 0.683916769, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786123 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34847, + "occurrences_watermark": 34847, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "96a4a0cf-59ff-4c81-99b0-4ae623dc1a09", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.buc.ro.geant.net xe-2/2/5 773", + "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, + "duration": 0.594005488, + "executed": 1692789493, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786491 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789493 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.buc.ro.geant.net,interface_name=xe-2/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789493, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.buc.ro.geant.net-xe-2-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.buc.ro.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.buc.ro.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2129d8b3-edcc-47fd-bae3-1e643953815d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789494 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 663103", + "handlers": [], + "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, + "duration": 0.405152746, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789480, + "output": "dscp32_counters,service_id=663103,hostname=mx1.bud.hu.geant.net,interface_name=ae16.333 ingressOctets=48127439195313,egressOctets=153562814582324\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 3425, + "occurrences_watermark": 3425, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-AMRES_AP2_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c00d0e6a-1ca5-438a-a39f-ca73371aed8a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 662908", + "handlers": [], + "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, + "duration": 0.479261978, + "executed": 1692789444, + "history": [ + { + "status": 0, + "executed": 1692783439 + }, + { + "status": 0, + "executed": 1692783739 + }, + { + "status": 0, + "executed": 1692784039 + }, + { + "status": 0, + "executed": 1692784339 + }, + { + "status": 0, + "executed": 1692784640 + }, + { + "status": 0, + "executed": 1692784940 + }, + { + "status": 0, + "executed": 1692785241 + }, + { + "status": 0, + "executed": 1692785541 + }, + { + "status": 0, + "executed": 1692785841 + }, + { + "status": 0, + "executed": 1692786142 + }, + { + "status": 0, + "executed": 1692786442 + }, + { + "status": 0, + "executed": 1692786742 + }, + { + "status": 0, + "executed": 1692787042 + }, + { + "status": 0, + "executed": 1692787343 + }, + { + "status": 0, + "executed": 1692787643 + }, + { + "status": 0, + "executed": 1692787943 + }, + { + "status": 0, + "executed": 1692788243 + }, + { + "status": 0, + "executed": 1692788543 + }, + { + "status": 0, + "executed": 1692788844 + }, + { + "status": 0, + "executed": 1692789144 + }, + { + "status": 0, + "executed": 1692789444 + } + ], + "issued": 1692789444, + "output": "dscp32_counters,service_id=662908,hostname=mx1.bud.hu.geant.net,interface_name=ae15.333 ingressOctets=41067935750708,egressOctets=20435427067606\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789444, + "occurrences": 163, + "occurrences_watermark": 163, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-MREN_AP_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "371cd651-0f36-4a48-bb0a-4e9a47312d1b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789444 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.bud.hu.geant.net", + "handlers": [], + "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, + "duration": 5.211262057, + "executed": 1692789466, + "history": [ + { + "status": 1, + "executed": 1692783460 + }, + { + "status": 1, + "executed": 1692783760 + }, + { + "status": 1, + "executed": 1692784060 + }, + { + "status": 1, + "executed": 1692784361 + }, + { + "status": 1, + "executed": 1692784661 + }, + { + "status": 1, + "executed": 1692784961 + }, + { + "status": 1, + "executed": 1692785261 + }, + { + "status": 1, + "executed": 1692785562 + }, + { + "status": 1, + "executed": 1692785862 + }, + { + "status": 1, + "executed": 1692786162 + }, + { + "status": 1, + "executed": 1692786463 + }, + { + "status": 1, + "executed": 1692786763 + }, + { + "status": 1, + "executed": 1692787063 + }, + { + "status": 1, + "executed": 1692787363 + }, + { + "status": 1, + "executed": 1692787664 + }, + { + "status": 1, + "executed": 1692787966 + }, + { + "status": 1, + "executed": 1692788265 + }, + { + "status": 1, + "executed": 1692788565 + }, + { + "status": 1, + "executed": 1692788866 + }, + { + "status": 1, + "executed": 1692789166 + }, + { + "status": 1, + "executed": 1692789466 + } + ], + "issued": 1692789465, + "output": "2023-08-23 11:17:46,605 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:46,605 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:46,605 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:46,605 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.bud.hu.geant.net\n2023-08-23 11:17:46,608 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:46,628 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.bud.hu.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.bud.hu.geant.net,subscription=232.223.222.1 octets=1009428202163\n2023-08-23 11:17:51,456 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.2,232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.8,232.223.222.9,232.223.222.10,232.223.222.11,232.223.222.12,232.223.222.13,232.223.222.14,232.223.222.15,232.223.222.16,232.223.222.17,232.223.222.18,232.223.222.19,232.223.222.20,232.223.222.21,232.223.222.22,232.223.222.23,232.223.222.24,232.223.222.25,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.29,232.223.222.30,232.223.222.31,232.223.222.32,232.223.222.33,232.223.222.34,232.223.222.35,232.223.222.36,232.223.222.37,232.223.222.38,232.223.222.39,232.223.222.40,232.223.222.41,232.223.222.42,232.223.222.43,232.223.222.44,232.223.222.45,232.223.222.46,232.223.222.47,232.223.222.48,232.223.222.49,232.223.222.50,232.223.222.51,232.223.222.52,232.223.222.53,232.223.222.54,232.223.222.55,232.223.222.56,232.223.222.57,232.223.222.58,232.223.222.59,232.223.222.60,232.223.222.61,232.223.222.62,232.223.222.63,232.223.222.64,232.223.222.65,232.223.222.66,232.223.222.67,232.223.222.68,232.223.222.69,232.223.222.70,232.223.222.71,232.223.222.72,232.223.223.1,232.223.223.22\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 1414, + "occurrences_watermark": 21821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.bud.hu.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a22adf2d-e9c5-4bdf-a64d-05bb5e85789a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789471 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae0 614", + "handlers": [], + "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, + "duration": 0.533476229, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783477 + }, + { + "status": 0, + "executed": 1692783777 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784378 + }, + { + "status": 0, + "executed": 1692784678 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785579 + }, + { + "status": 0, + "executed": 1692785879 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786780 + }, + { + "status": 0, + "executed": 1692787080 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787681 + }, + { + "status": 0, + "executed": 1692787981 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788882 + }, + { + "status": 0, + "executed": 1692789182 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae0 ingressOctets=325004110286395,egressOctets=352540705308475,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a959431f-1800-4200-b030-eb7032653cbf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae0.0 621", + "handlers": [], + "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, + "duration": 0.57334575, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae0.0 ingressOctets=325003631842598,egressOctets=352538889052919,ingressErrors=0,egressErrors=0,ingressOctetsv6=35777291115410,egressOctetsv6=104155761175976,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "843ecfe4-21d9-4de7-8658-b530c1f249b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10 642", + "handlers": [], + "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, + "duration": 0.506632112, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae10 ingressOctets=6639188602600036,egressOctets=33172296278078071,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "08012f91-e177-442b-b4e4-92e7f01cdf29", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10.100 730", + "handlers": [], + "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, + "duration": 0.50623956, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae10.100 ingressOctets=2693612912124544,egressOctets=7769945823921557,ingressErrors=0,egressErrors=0,ingressOctetsv6=1138691772363444,egressOctetsv6=1840152278534174,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae10.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9395053d-4301-4800-ac30-14feded5f359", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10.111 823", + "handlers": [], + "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, + "duration": 0.471549115, + "executed": 1692789470, + "history": [ + { + "status": 0, + "executed": 1692783465 + }, + { + "status": 0, + "executed": 1692783765 + }, + { + "status": 0, + "executed": 1692784065 + }, + { + "status": 0, + "executed": 1692784366 + }, + { + "status": 0, + "executed": 1692784666 + }, + { + "status": 0, + "executed": 1692784966 + }, + { + "status": 0, + "executed": 1692785266 + }, + { + "status": 0, + "executed": 1692785567 + }, + { + "status": 0, + "executed": 1692785867 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786468 + }, + { + "status": 0, + "executed": 1692786768 + }, + { + "status": 0, + "executed": 1692787068 + }, + { + "status": 0, + "executed": 1692787368 + }, + { + "status": 0, + "executed": 1692787669 + }, + { + "status": 0, + "executed": 1692787969 + }, + { + "status": 0, + "executed": 1692788269 + }, + { + "status": 0, + "executed": 1692788569 + }, + { + "status": 0, + "executed": 1692788870 + }, + { + "status": 0, + "executed": 1692789170 + }, + { + "status": 0, + "executed": 1692789470 + } + ], + "issued": 1692789469, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae10.111 ingressOctets=27003390775,egressOctets=209700579179,ingressErrors=0,egressErrors=0,ingressOctetsv6=14752855738,egressOctetsv6=172842800744,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789470, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae10.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0a09bbb6-e36e-4c3f-b3ba-39cece73ae1e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789470 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10.1955 814", + "handlers": [], + "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, + "duration": 0.506744962, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783454 + }, + { + "status": 0, + "executed": 1692783754 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784355 + }, + { + "status": 0, + "executed": 1692784655 + }, + { + "status": 0, + "executed": 1692784955 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785556 + }, + { + "status": 0, + "executed": 1692785856 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786457 + }, + { + "status": 0, + "executed": 1692786757 + }, + { + "status": 0, + "executed": 1692787057 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787658 + }, + { + "status": 0, + "executed": 1692787958 + }, + { + "status": 0, + "executed": 1692788258 + }, + { + "status": 0, + "executed": 1692788558 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae10.1955 ingressOctets=1571410894,egressOctets=1212196826,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae10.1955", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3c5bf4dc-5803-45f7-8116-3784b1f8ba5a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10.333 705", + "handlers": [], + "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, + "duration": 0.491304222, + "executed": 1692789721, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786420 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789721 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae10.333 ingressOctets=3945540886563153,egressOctets=25402087094953105,ingressErrors=0,egressErrors=0,ingressOctetsv6=396793868637247,egressOctetsv6=2067956102363218,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789721, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae10.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5b12ef01-4fb1-4728-ab5f-1ffc115282d6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae10.911 697", + "handlers": [], + "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, + "duration": 0.487123258, + "executed": 1692789465, + "history": [ + { + "status": 0, + "executed": 1692783459 + }, + { + "status": 0, + "executed": 1692783759 + }, + { + "status": 0, + "executed": 1692784060 + }, + { + "status": 0, + "executed": 1692784360 + }, + { + "status": 0, + "executed": 1692784660 + }, + { + "status": 0, + "executed": 1692784960 + }, + { + "status": 0, + "executed": 1692785261 + }, + { + "status": 0, + "executed": 1692785561 + }, + { + "status": 0, + "executed": 1692785861 + }, + { + "status": 0, + "executed": 1692786162 + }, + { + "status": 0, + "executed": 1692786462 + }, + { + "status": 0, + "executed": 1692786762 + }, + { + "status": 0, + "executed": 1692787062 + }, + { + "status": 0, + "executed": 1692787363 + }, + { + "status": 0, + "executed": 1692787663 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788264 + }, + { + "status": 0, + "executed": 1692788564 + }, + { + "status": 0, + "executed": 1692788865 + }, + { + "status": 0, + "executed": 1692789165 + }, + { + "status": 0, + "executed": 1692789465 + } + ], + "issued": 1692789464, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae10.911 ingressOctets=131225111,egressOctets=520540098,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789465, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae10.911", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "81096bac-3fe3-4131-8a19-4bee1af20dfe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789465 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae11 643", + "handlers": [], + "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, + "duration": 0.554696816, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783474 + }, + { + "status": 0, + "executed": 1692783774 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae11 ingressOctets=3094485704710714,egressOctets=14324213573359558,ingressErrors=673,egressErrors=0,ingressDiscards=0,egressDiscards=1661137\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9837e4c5-79ac-451c-9d4e-ce2c4abba073", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae11.100 734", + "handlers": [], + "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, + "duration": 0.507053852, + "executed": 1692789713, + "history": [ + { + "status": 0, + "executed": 1692783710 + }, + { + "status": 0, + "executed": 1692784010 + }, + { + "status": 0, + "executed": 1692784310 + }, + { + "status": 0, + "executed": 1692784610 + }, + { + "status": 0, + "executed": 1692784910 + }, + { + "status": 0, + "executed": 1692785210 + }, + { + "status": 0, + "executed": 1692785510 + }, + { + "status": 0, + "executed": 1692785811 + }, + { + "status": 0, + "executed": 1692786111 + }, + { + "status": 0, + "executed": 1692786412 + }, + { + "status": 0, + "executed": 1692786712 + }, + { + "status": 0, + "executed": 1692787012 + }, + { + "status": 0, + "executed": 1692787312 + }, + { + "status": 0, + "executed": 1692787612 + }, + { + "status": 0, + "executed": 1692787912 + }, + { + "status": 0, + "executed": 1692788213 + }, + { + "status": 0, + "executed": 1692788513 + }, + { + "status": 0, + "executed": 1692788813 + }, + { + "status": 0, + "executed": 1692789113 + }, + { + "status": 0, + "executed": 1692789413 + }, + { + "status": 0, + "executed": 1692789713 + } + ], + "issued": 1692789713, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae11.100 ingressOctets=923620111332104,egressOctets=700279457914789,ingressErrors=0,egressErrors=0,ingressOctetsv6=519227760344860,egressOctetsv6=213173176401372,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789713, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae11.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc1c2bc9-ea81-4b6e-9704-2231b2a58c4b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789714 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae11.111 770", + "handlers": [], + "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, + "duration": 0.590627834, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788261 + }, + { + "status": 0, + "executed": 1692788561 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae11.111 ingressOctets=2140690253922513,egressOctets=18464412078131,ingressErrors=0,egressErrors=0,ingressOctetsv6=1886287283183905,egressOctetsv6=17346378080601,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae11.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "463a2e02-91c2-4ac9-baa4-b07fe0db071c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789462 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae11.333 732", + "handlers": [], + "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, + "duration": 0.478566918, + "executed": 1692789490, + "history": [ + { + "status": 0, + "executed": 1692783485 + }, + { + "status": 0, + "executed": 1692783785 + }, + { + "status": 0, + "executed": 1692784086 + }, + { + "status": 0, + "executed": 1692784386 + }, + { + "status": 0, + "executed": 1692784686 + }, + { + "status": 0, + "executed": 1692784986 + }, + { + "status": 0, + "executed": 1692785286 + }, + { + "status": 0, + "executed": 1692785587 + }, + { + "status": 0, + "executed": 1692785887 + }, + { + "status": 0, + "executed": 1692786187 + }, + { + "status": 0, + "executed": 1692786488 + }, + { + "status": 0, + "executed": 1692786788 + }, + { + "status": 0, + "executed": 1692787088 + }, + { + "status": 0, + "executed": 1692787388 + }, + { + "status": 0, + "executed": 1692787689 + }, + { + "status": 0, + "executed": 1692787989 + }, + { + "status": 0, + "executed": 1692788289 + }, + { + "status": 0, + "executed": 1692788589 + }, + { + "status": 0, + "executed": 1692788890 + }, + { + "status": 0, + "executed": 1692789190 + }, + { + "status": 0, + "executed": 1692789490 + } + ], + "issued": 1692789489, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae11.333 ingressOctets=30178722128555,egressOctets=13605499735265969,ingressErrors=0,egressErrors=0,ingressOctetsv6=21640929872566,egressOctetsv6=123601357465842,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789490, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae11.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bc068e21-53be-483f-a2a5-ffa3ec5057d3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789490 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae13 648", + "handlers": [], + "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, + "duration": 0.562411328, + "executed": 1692789452, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784048 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785249 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787351 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788852 + }, + { + "status": 0, + "executed": 1692789152 + }, + { + "status": 0, + "executed": 1692789452 + } + ], + "issued": 1692789452, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae13 ingressOctets=53944300559,egressOctets=1746024718038,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789452, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e5e4d57e-3023-4382-b162-23f380d8c377", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae13.333 1022", + "handlers": [], + "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, + "duration": 0.453927595, + "executed": 1692789507, + "history": [ + { + "status": 0, + "executed": 1692783503 + }, + { + "status": 0, + "executed": 1692783803 + }, + { + "status": 0, + "executed": 1692784103 + }, + { + "status": 0, + "executed": 1692784403 + }, + { + "status": 0, + "executed": 1692784703 + }, + { + "status": 0, + "executed": 1692785004 + }, + { + "status": 0, + "executed": 1692785304 + }, + { + "status": 0, + "executed": 1692785604 + }, + { + "status": 0, + "executed": 1692785904 + }, + { + "status": 0, + "executed": 1692786204 + }, + { + "status": 0, + "executed": 1692786505 + }, + { + "status": 0, + "executed": 1692786805 + }, + { + "status": 0, + "executed": 1692787105 + }, + { + "status": 0, + "executed": 1692787405 + }, + { + "status": 0, + "executed": 1692787706 + }, + { + "status": 0, + "executed": 1692788006 + }, + { + "status": 0, + "executed": 1692788306 + }, + { + "status": 0, + "executed": 1692788606 + }, + { + "status": 0, + "executed": 1692788907 + }, + { + "status": 0, + "executed": 1692789207 + }, + { + "status": 0, + "executed": 1692789507 + } + ], + "issued": 1692789506, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae13.333 ingressOctets=20319950335,egressOctets=768597400580,ingressErrors=0,egressErrors=0,ingressOctetsv6=1415454761,egressOctetsv6=43464366980,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789507, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae13.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "218c7447-2f11-4285-97c5-8449f125282a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789507 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae13.401 1156", + "handlers": [], + "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, + "duration": 0.589684657, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae13.401 ingressOctets=770855274,egressOctets=1172148394,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae13.401", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "186eb3d0-7cc0-41d4-80de-0ad78150efda", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae13.600 1021", + "handlers": [], + "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, + "duration": 0.523840648, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae13.600 ingressOctets=27951714208,egressOctets=975578588854,ingressErrors=0,egressErrors=0,ingressOctetsv6=12362812525,egressOctetsv6=313144602730,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae13.600", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c65459a9-5df8-483a-b193-5d143035bd50", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae15 652", + "handlers": [], + "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, + "duration": 0.486352664, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae15 ingressOctets=105338862733162,egressOctets=132132006854813,ingressErrors=11,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae15", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "683f5b9e-0bfe-42e3-b73a-ed3b37c691f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae15.100 865", + "handlers": [], + "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, + "duration": 0.476935663, + "executed": 1692789450, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784046 + }, + { + "status": 0, + "executed": 1692784346 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785247 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786148 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787349 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788850 + }, + { + "status": 0, + "executed": 1692789150 + }, + { + "status": 0, + "executed": 1692789450 + } + ], + "issued": 1692789450, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae15.100 ingressOctets=719149302207,egressOctets=590168180310,ingressErrors=0,egressErrors=0,ingressOctetsv6=35175398237,egressOctetsv6=8702746365,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789450, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae15.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "65ef5838-7dbe-4e59-b352-6f239a5458ac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae15.333 864", + "handlers": [], + "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, + "duration": 0.668791805, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785595 + }, + { + "status": 0, + "executed": 1692785895 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae15.333 ingressOctets=104620452036779,egressOctets=131541732671175,ingressErrors=0,egressErrors=0,ingressOctetsv6=1057223753383,egressOctetsv6=345609340274,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae15.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1084bb99-a25b-4ced-8147-8e90a4a9a961", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae16 653", + "handlers": [], + "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, + "duration": 0.526294505, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783705 + }, + { + "status": 0, + "executed": 1692784005 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae16 ingressOctets=193362363203530,egressOctets=1002854062073247,ingressErrors=10,egressErrors=0,ingressDiscards=0,egressDiscards=71554327\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5b7a0ee8-aba3-483f-beb0-9819a4cbb68e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae16.1 878", + "handlers": [], + "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, + "duration": 0.532053868, + "executed": 1692789470, + "history": [ + { + "status": 0, + "executed": 1692783465 + }, + { + "status": 0, + "executed": 1692783765 + }, + { + "status": 0, + "executed": 1692784066 + }, + { + "status": 0, + "executed": 1692784366 + }, + { + "status": 0, + "executed": 1692784666 + }, + { + "status": 0, + "executed": 1692784967 + }, + { + "status": 0, + "executed": 1692785267 + }, + { + "status": 0, + "executed": 1692785567 + }, + { + "status": 0, + "executed": 1692785867 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786468 + }, + { + "status": 0, + "executed": 1692786768 + }, + { + "status": 0, + "executed": 1692787068 + }, + { + "status": 0, + "executed": 1692787369 + }, + { + "status": 0, + "executed": 1692787669 + }, + { + "status": 0, + "executed": 1692787969 + }, + { + "status": 0, + "executed": 1692788270 + }, + { + "status": 0, + "executed": 1692788570 + }, + { + "status": 0, + "executed": 1692788870 + }, + { + "status": 0, + "executed": 1692789170 + }, + { + "status": 0, + "executed": 1692789470 + } + ], + "issued": 1692789470, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae16.1 ingressOctets=1431852633020,egressOctets=2815432606283,ingressErrors=0,egressErrors=0,ingressOctetsv6=3504169336,egressOctetsv6=488854842224,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789470, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae16.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cf720d0f-b80e-4186-9bf8-149a4929905e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789471 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae16.10 877", + "handlers": [], + "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, + "duration": 0.49213795, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae16.10 ingressOctets=125967156,egressOctets=479534123,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae16.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f25b6049-d95c-42d4-ae75-89483b66b35d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae16.333 876", + "handlers": [], + "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, + "duration": 0.58408645, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785533 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae16.333 ingressOctets=191923421943217,egressOctets=1000036980664653,ingressErrors=0,egressErrors=0,ingressOctetsv6=1919007653613,egressOctetsv6=12392343039866,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae16.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc37e602-4255-45ea-b326-2bf58718880d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae18 655", + "handlers": [], + "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, + "duration": 0.48573956, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae18 ingressOctets=6238047707713926,egressOctets=2970927252771572,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=4537316\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae18", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f8542bcb-a52c-4a80-9e2d-ab4ad111312a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789496 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae18.10 527", + "handlers": [], + "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, + "duration": 0.523116927, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae18.10 ingressOctets=6238026955467440,egressOctets=2970920645993663,ingressErrors=0,egressErrors=0,ingressOctetsv6=402438847144451,egressOctetsv6=375159425491173,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae18.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "95791520-ee39-4115-b78e-62213658fd60", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae19 656", + "handlers": [], + "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, + "duration": 0.524158562, + "executed": 1692789460, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784055 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785256 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786157 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787358 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788860 + }, + { + "status": 0, + "executed": 1692789160 + }, + { + "status": 0, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae19 ingressOctets=694573884191050,egressOctets=462641226639334,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789460, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae19", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "adba239d-f17d-4e92-bd6b-c3bc4b15732c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789460 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae19.0 554", + "handlers": [], + "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, + "duration": 0.517199843, + "executed": 1692789464, + "history": [ + { + "status": 0, + "executed": 1692783458 + }, + { + "status": 0, + "executed": 1692783758 + }, + { + "status": 0, + "executed": 1692784059 + }, + { + "status": 0, + "executed": 1692784359 + }, + { + "status": 0, + "executed": 1692784659 + }, + { + "status": 0, + "executed": 1692784960 + }, + { + "status": 0, + "executed": 1692785260 + }, + { + "status": 0, + "executed": 1692785561 + }, + { + "status": 0, + "executed": 1692785861 + }, + { + "status": 0, + "executed": 1692786161 + }, + { + "status": 0, + "executed": 1692786462 + }, + { + "status": 0, + "executed": 1692786762 + }, + { + "status": 0, + "executed": 1692787062 + }, + { + "status": 0, + "executed": 1692787362 + }, + { + "status": 0, + "executed": 1692787663 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788264 + }, + { + "status": 0, + "executed": 1692788564 + }, + { + "status": 0, + "executed": 1692788864 + }, + { + "status": 0, + "executed": 1692789164 + }, + { + "status": 0, + "executed": 1692789464 + } + ], + "issued": 1692789464, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae19.0 ingressOctets=694574006920865,egressOctets=462641114790235,ingressErrors=0,egressErrors=0,ingressOctetsv6=1194537730267,egressOctetsv6=1023566637877,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789464, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae19.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "96597687-0604-4bd6-9c3d-a3565c8ebad5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789465 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae2 616", + "handlers": [], + "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, + "duration": 0.521025469, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae2 ingressOctets=4388697718706448,egressOctets=7796670112899973,ingressErrors=84,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "29aa4e24-19bb-4d5c-baf7-1e10fb012383", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae2.0 709", + "handlers": [], + "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, + "duration": 0.604805392, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783429 + }, + { + "status": 0, + "executed": 1692783729 + }, + { + "status": 0, + "executed": 1692784029 + }, + { + "status": 0, + "executed": 1692784329 + }, + { + "status": 0, + "executed": 1692784629 + }, + { + "status": 0, + "executed": 1692784929 + }, + { + "status": 0, + "executed": 1692785229 + }, + { + "status": 0, + "executed": 1692785529 + }, + { + "status": 0, + "executed": 1692785830 + }, + { + "status": 0, + "executed": 1692786130 + }, + { + "status": 0, + "executed": 1692786431 + }, + { + "status": 0, + "executed": 1692786731 + }, + { + "status": 0, + "executed": 1692787031 + }, + { + "status": 0, + "executed": 1692787331 + }, + { + "status": 0, + "executed": 1692787631 + }, + { + "status": 0, + "executed": 1692787932 + }, + { + "status": 0, + "executed": 1692788232 + }, + { + "status": 0, + "executed": 1692788532 + }, + { + "status": 0, + "executed": 1692788832 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae2.0 ingressOctets=4388659636289824,egressOctets=7796633720439342,ingressErrors=0,egressErrors=0,ingressOctetsv6=208962170970810,egressOctetsv6=249762805327705,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "69c19edf-258f-4cee-83b9-abe55e44b7b5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae20 661", + "handlers": [], + "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, + "duration": 0.501117848, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784068 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784969 + }, + { + "status": 0, + "executed": 1692785269 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787371 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787972 + }, + { + "status": 0, + "executed": 1692788272 + }, + { + "status": 0, + "executed": 1692788572 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789472, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae20 ingressOctets=3794462511891,egressOctets=1688765782624,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=442\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae20", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "51ac0ec2-c3bc-4279-a30e-6de5bea9cad0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789473 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae20.100 813", + "handlers": [], + "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, + "duration": 0.497950636, + "executed": 1692789436, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784633 + }, + { + "status": 0, + "executed": 1692784933 + }, + { + "status": 0, + "executed": 1692785233 + }, + { + "status": 0, + "executed": 1692785533 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786134 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787335 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788836 + }, + { + "status": 0, + "executed": 1692789136 + }, + { + "status": 0, + "executed": 1692789436 + } + ], + "issued": 1692789436, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae20.100 ingressOctets=3792494183715,egressOctets=1688613643816,ingressErrors=0,egressErrors=0,ingressOctetsv6=167281097803,egressOctetsv6=963129002827,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789436, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae20.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "858ccfc9-6a15-439b-9886-b74d96a49ba0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae21 662", + "handlers": [], + "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, + "duration": 0.503357573, + "executed": 1692789460, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788860 + }, + { + "status": 0, + "executed": 1692789160 + }, + { + "status": 0, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae21 ingressOctets=195271282950015,egressOctets=174281894839326,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789460, + "occurrences": 23541, + "occurrences_watermark": 23541, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "114c35d2-4894-4281-8a79-61655c2d411e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789460 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae21.0 826", + "handlers": [], + "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, + "duration": 0.51487885, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae21.0 ingressOctets=195290332666272,egressOctets=174300491170523,ingressErrors=0,egressErrors=0,ingressOctetsv6=4224474401814,egressOctetsv6=246968743962,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 23544, + "occurrences_watermark": 23544, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae21.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8c986793-cbf2-4ebb-a6f8-c23c52ccd88f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae3 617", + "handlers": [], + "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, + "duration": 0.61190985, + "executed": 1692789497, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787095 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787696 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788897 + }, + { + "status": 0, + "executed": 1692789197 + }, + { + "status": 0, + "executed": 1692789497 + } + ], + "issued": 1692789497, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae3 ingressOctets=51681881362409514,egressOctets=12388520022650783,ingressErrors=278,egressErrors=0,ingressDiscards=0,egressDiscards=706474\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789497, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "00a3bcd9-3b68-44e0-afef-ebda4907ef0d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae3.0 714", + "handlers": [], + "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, + "duration": 0.557571513, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae3.0 ingressOctets=51681725258255976,egressOctets=12388450732565110,ingressErrors=0,egressErrors=0,ingressOctetsv6=2072602231486462,egressOctetsv6=1367637837290577,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cf7f8c5c-a35c-4837-99ce-d132ce5b78d5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae4 618", + "handlers": [], + "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, + "duration": 0.561163256, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae4 ingressOctets=323724919359869,egressOctets=224825583044378,ingressErrors=16786,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "19db0729-8386-4f10-8a9c-8abe3aaa89f8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae4.0 739", + "handlers": [], + "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, + "duration": 0.515213885, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784097 + }, + { + "status": 0, + "executed": 1692784397 + }, + { + "status": 0, + "executed": 1692784697 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785598 + }, + { + "status": 0, + "executed": 1692785898 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787099 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787700 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788901 + }, + { + "status": 0, + "executed": 1692789201 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae4.0 ingressOctets=323723204520217,egressOctets=224823797450290,ingressErrors=0,egressErrors=0,ingressOctetsv6=29525860548532,egressOctetsv6=1580698551993,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c2c1f82e-e3fc-4314-8f24-dfa9b9f0b227", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae5 619", + "handlers": [], + "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, + "duration": 0.483072304, + "executed": 1692789495, + "history": [ + { + "status": 0, + "executed": 1692783491 + }, + { + "status": 0, + "executed": 1692783791 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784992 + }, + { + "status": 0, + "executed": 1692785292 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786193 + }, + { + "status": 0, + "executed": 1692786493 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787394 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787995 + }, + { + "status": 0, + "executed": 1692788295 + }, + { + "status": 0, + "executed": 1692788595 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789495 + } + ], + "issued": 1692789495, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae5 ingressOctets=805586360446063,egressOctets=1561584220236317,ingressErrors=1,egressErrors=6,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789495, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8c48a3c3-d573-43ef-ab7a-f653b62c24e6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789496 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae5.0 740", + "handlers": [], + "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, + "duration": 0.512067729, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae5.0 ingressOctets=805580821799420,egressOctets=1561568276329313,ingressErrors=0,egressErrors=0,ingressOctetsv6=4205218293,egressOctetsv6=164843498223,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d3a056ce-19b9-4301-8101-a5d7d8c21432", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae6 828", + "handlers": [], + "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, + "duration": 0.503274209, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae6 ingressOctets=11637323103,egressOctets=160814039632,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 6307, + "occurrences_watermark": 6307, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e356fcf-42cf-44ca-bd41-fa5c0d1f0138", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2103, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ae6.0 829", + "handlers": [], + "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, + "duration": 0.554812755, + "executed": 1692789668, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786666 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789668 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ae6.0 ingressOctets=11613447349,egressOctets=160795076548,ingressErrors=0,egressErrors=0,ingressOctetsv6=615663892,egressOctetsv6=4915748807,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789668, + "occurrences": 6307, + "occurrences_watermark": 6307, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ae6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d46c6292-6135-4982-9625-e2bd67b26abf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2103, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-1/1/0 676", + "handlers": [], + "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, + "duration": 0.526603941, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-1/1/0 ingressOctets=25840990031003507,egressOctets=6194409980501346,ingressErrors=278,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b667d3e5-19f6-430f-ad69-7488f836ee25", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-1/3/0 681", + "handlers": [], + "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, + "duration": 0.482071811, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-1/3/0 ingressOctets=25840808912682490,egressOctets=6194053092265385,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=706474\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0b8acfc3-f91e-453f-99ff-c9933fb33708", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-2/1/0 647", + "handlers": [], + "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, + "duration": 0.60627888, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786447 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-2/1/0 ingressOctets=2195324953663286,egressOctets=3900367608388246,ingressErrors=52,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-2-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5ed147de-fa12-4300-a18e-9831bc344653", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-2/3/0 649", + "handlers": [], + "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, + "duration": 0.51095559, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-2/3/0 ingressOctets=2193374646539927,egressOctets=3896295355224637,ingressErrors=32,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-2-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d79d0841-4adb-42a3-b086-c513cc900306", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-3/1/0 689", + "handlers": [], + "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, + "duration": 0.550996146, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783481 + }, + { + "status": 0, + "executed": 1692783781 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784982 + }, + { + "status": 0, + "executed": 1692785282 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787384 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787985 + }, + { + "status": 0, + "executed": 1692788285 + }, + { + "status": 0, + "executed": 1692788585 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789485, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-3/1/0 ingressOctets=3094485886689754,egressOctets=14324225425085840,ingressErrors=673,egressErrors=0,ingressDiscards=0,egressDiscards=1661137\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-3-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "027dd931-6053-4d5d-8fc0-afb40e5c2a84", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-3/3/0 698", + "handlers": [], + "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, + "duration": 0.621107524, + "executed": 1692789441, + "history": [ + { + "status": 0, + "executed": 1692783437 + }, + { + "status": 0, + "executed": 1692783737 + }, + { + "status": 0, + "executed": 1692784037 + }, + { + "status": 0, + "executed": 1692784337 + }, + { + "status": 0, + "executed": 1692784637 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785238 + }, + { + "status": 0, + "executed": 1692785538 + }, + { + "status": 0, + "executed": 1692785838 + }, + { + "status": 0, + "executed": 1692786139 + }, + { + "status": 0, + "executed": 1692786439 + }, + { + "status": 0, + "executed": 1692786739 + }, + { + "status": 0, + "executed": 1692787039 + }, + { + "status": 0, + "executed": 1692787340 + }, + { + "status": 0, + "executed": 1692787640 + }, + { + "status": 0, + "executed": 1692787940 + }, + { + "status": 0, + "executed": 1692788240 + }, + { + "status": 0, + "executed": 1692788540 + }, + { + "status": 0, + "executed": 1692788841 + }, + { + "status": 0, + "executed": 1692789141 + }, + { + "status": 0, + "executed": 1692789441 + } + ], + "issued": 1692789441, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-3/3/0 ingressOctets=6639153194712639,egressOctets=33171925568698838,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789441, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-3-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5df5982a-0576-4370-873e-27858483e96e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789441 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-7/0/2 1133", + "handlers": [], + "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, + "duration": 0.526777737, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-7/0/2 ingressOctets=402932173753811,egressOctets=780603564836757,ingressErrors=1,egressErrors=3,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-7-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ba78f9d8-85e8-4388-9d53-18ecb2f05b6a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-7/0/5 1132", + "handlers": [], + "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, + "duration": 0.465372866, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-7/0/5 ingressOctets=402647966455339,egressOctets=780964135627966,ingressErrors=0,egressErrors=3,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-7-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3d4277a5-8976-4cc5-9ef4-a8fffff91f0d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-7/1/2 1138", + "handlers": [], + "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, + "duration": 0.492129968, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784346 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-7/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-7-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e35e34a9-f316-4ec9-b439-9ab72014a61e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-7/1/5 1139", + "handlers": [], + "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, + "duration": 0.583023737, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-7/1/5 ingressOctets=11635774264,egressOctets=160803763294,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-7-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4ef85345-d854-4229-a06d-35a2b34be4a7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-8/0/2 1144", + "handlers": [], + "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, + "duration": 0.608474555, + "executed": 1692789434, + "history": [ + { + "status": 0, + "executed": 1692783430 + }, + { + "status": 0, + "executed": 1692783730 + }, + { + "status": 0, + "executed": 1692784030 + }, + { + "status": 0, + "executed": 1692784330 + }, + { + "status": 0, + "executed": 1692784631 + }, + { + "status": 0, + "executed": 1692784931 + }, + { + "status": 0, + "executed": 1692785231 + }, + { + "status": 0, + "executed": 1692785531 + }, + { + "status": 0, + "executed": 1692785831 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786432 + }, + { + "status": 0, + "executed": 1692786732 + }, + { + "status": 0, + "executed": 1692787032 + }, + { + "status": 0, + "executed": 1692787333 + }, + { + "status": 0, + "executed": 1692787633 + }, + { + "status": 0, + "executed": 1692787933 + }, + { + "status": 0, + "executed": 1692788233 + }, + { + "status": 0, + "executed": 1692788533 + }, + { + "status": 0, + "executed": 1692788834 + }, + { + "status": 0, + "executed": 1692789134 + }, + { + "status": 0, + "executed": 1692789434 + } + ], + "issued": 1692789434, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-8/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789434, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-8-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "99715a80-e7a4-4a26-9432-facb6fbddd0c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-8/0/5 1145", + "handlers": [], + "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, + "duration": 0.547742216, + "executed": 1692789426, + "history": [ + { + "status": 0, + "executed": 1692783422 + }, + { + "status": 0, + "executed": 1692783722 + }, + { + "status": 0, + "executed": 1692784022 + }, + { + "status": 0, + "executed": 1692784322 + }, + { + "status": 0, + "executed": 1692784623 + }, + { + "status": 0, + "executed": 1692784923 + }, + { + "status": 0, + "executed": 1692785223 + }, + { + "status": 0, + "executed": 1692785523 + }, + { + "status": 0, + "executed": 1692785823 + }, + { + "status": 0, + "executed": 1692786124 + }, + { + "status": 0, + "executed": 1692786424 + }, + { + "status": 0, + "executed": 1692786724 + }, + { + "status": 0, + "executed": 1692787024 + }, + { + "status": 0, + "executed": 1692787325 + }, + { + "status": 0, + "executed": 1692787625 + }, + { + "status": 0, + "executed": 1692787925 + }, + { + "status": 0, + "executed": 1692788225 + }, + { + "status": 0, + "executed": 1692788525 + }, + { + "status": 0, + "executed": 1692788826 + }, + { + "status": 0, + "executed": 1692789126 + }, + { + "status": 0, + "executed": 1692789426 + } + ], + "issued": 1692789426, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-8/0/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789426, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-8-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "34e643a8-761f-4f18-899a-3379137e8c43", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789427 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-8/1/2 1148", + "handlers": [], + "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, + "duration": 0.51024642, + "executed": 1692789485, + "history": [ + { + "status": 0, + "executed": 1692783480 + }, + { + "status": 0, + "executed": 1692783780 + }, + { + "status": 0, + "executed": 1692784081 + }, + { + "status": 0, + "executed": 1692784381 + }, + { + "status": 0, + "executed": 1692784681 + }, + { + "status": 0, + "executed": 1692784981 + }, + { + "status": 0, + "executed": 1692785282 + }, + { + "status": 0, + "executed": 1692785582 + }, + { + "status": 0, + "executed": 1692785882 + }, + { + "status": 0, + "executed": 1692786182 + }, + { + "status": 0, + "executed": 1692786483 + }, + { + "status": 0, + "executed": 1692786783 + }, + { + "status": 0, + "executed": 1692787083 + }, + { + "status": 0, + "executed": 1692787384 + }, + { + "status": 0, + "executed": 1692787684 + }, + { + "status": 0, + "executed": 1692787984 + }, + { + "status": 0, + "executed": 1692788285 + }, + { + "status": 0, + "executed": 1692788585 + }, + { + "status": 0, + "executed": 1692788885 + }, + { + "status": 0, + "executed": 1692789185 + }, + { + "status": 0, + "executed": 1692789485 + } + ], + "issued": 1692789485, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-8/1/2 ingressOctets=95994861,egressOctets=96531832,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789485, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-8-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b75827d2-04b1-4777-be9f-247d4a6e4103", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-8/1/5 1149", + "handlers": [], + "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, + "duration": 0.45504021, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789705, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-8/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-8-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "91bb0614-9841-4d0f-9dd0-a7626d1118d0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789706 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-9/0/2 1128", + "handlers": [], + "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, + "duration": 0.566205774, + "executed": 1692789434, + "history": [ + { + "status": 0, + "executed": 1692783431 + }, + { + "status": 0, + "executed": 1692783731 + }, + { + "status": 0, + "executed": 1692784031 + }, + { + "status": 0, + "executed": 1692784331 + }, + { + "status": 0, + "executed": 1692784631 + }, + { + "status": 0, + "executed": 1692784931 + }, + { + "status": 0, + "executed": 1692785231 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785832 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786733 + }, + { + "status": 0, + "executed": 1692787033 + }, + { + "status": 0, + "executed": 1692787333 + }, + { + "status": 0, + "executed": 1692787633 + }, + { + "status": 0, + "executed": 1692787934 + }, + { + "status": 0, + "executed": 1692788234 + }, + { + "status": 0, + "executed": 1692788534 + }, + { + "status": 0, + "executed": 1692788834 + }, + { + "status": 0, + "executed": 1692789134 + }, + { + "status": 0, + "executed": 1692789434 + } + ], + "issued": 1692789434, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-9/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789434, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-9-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f168dad0-86ef-4648-8bdc-541b20e493ef", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-9/0/5 1129", + "handlers": [], + "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, + "duration": 0.46803425, + "executed": 1692789484, + "history": [ + { + "status": 0, + "executed": 1692783480 + }, + { + "status": 0, + "executed": 1692783780 + }, + { + "status": 0, + "executed": 1692784081 + }, + { + "status": 0, + "executed": 1692784381 + }, + { + "status": 0, + "executed": 1692784681 + }, + { + "status": 0, + "executed": 1692784981 + }, + { + "status": 0, + "executed": 1692785281 + }, + { + "status": 0, + "executed": 1692785582 + }, + { + "status": 0, + "executed": 1692785882 + }, + { + "status": 0, + "executed": 1692786182 + }, + { + "status": 0, + "executed": 1692786482 + }, + { + "status": 0, + "executed": 1692786783 + }, + { + "status": 0, + "executed": 1692787083 + }, + { + "status": 0, + "executed": 1692787383 + }, + { + "status": 0, + "executed": 1692787684 + }, + { + "status": 0, + "executed": 1692787984 + }, + { + "status": 0, + "executed": 1692788284 + }, + { + "status": 0, + "executed": 1692788584 + }, + { + "status": 0, + "executed": 1692788885 + }, + { + "status": 0, + "executed": 1692789185 + }, + { + "status": 0, + "executed": 1692789484 + } + ], + "issued": 1692789484, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-9/0/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789484, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-9-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0048cebf-b654-4609-915d-b4373e3136c2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789485 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-9/1/2 1136", + "handlers": [], + "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, + "duration": 0.684500333, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784095 + }, + { + "status": 0, + "executed": 1692784395 + }, + { + "status": 0, + "executed": 1692784695 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785596 + }, + { + "status": 0, + "executed": 1692785896 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-9/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-9-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dc92d057-fd33-4e86-99a5-beb0de1c8e01", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net et-9/1/5 1137", + "handlers": [], + "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, + "duration": 0.494014953, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=et-9/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-et-9-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "77ff2283-eabc-424a-92ab-f3b4e023726d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/0 592", + "handlers": [], + "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, + "duration": 0.542508533, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b749523f-c105-44c1-b0a3-dbe043b13cbe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/1 593", + "handlers": [], + "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, + "duration": 0.513227742, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/2/1 ingressOctets=1863851737,egressOctets=626200938,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e21121f8-dbec-4e8b-a8f3-ca0e48e3cdf4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/2 594", + "handlers": [], + "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, + "duration": 0.459290312, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2f3b0c07-f1b0-4a97-a27a-8ea5d552cf12", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/3 595", + "handlers": [], + "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, + "duration": 0.567723167, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/2/3 ingressOctets=3794533681001,egressOctets=1688675271604,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=442\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2f4993e7-73e3-44b4-a86c-3eb983de7708", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/4 596", + "handlers": [], + "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, + "duration": 0.474440858, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783454 + }, + { + "status": 0, + "executed": 1692783754 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784355 + }, + { + "status": 0, + "executed": 1692784655 + }, + { + "status": 0, + "executed": 1692784955 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785556 + }, + { + "status": 0, + "executed": 1692785856 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786457 + }, + { + "status": 0, + "executed": 1692786757 + }, + { + "status": 0, + "executed": 1692787057 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787658 + }, + { + "status": 0, + "executed": 1692787958 + }, + { + "status": 0, + "executed": 1692788258 + }, + { + "status": 0, + "executed": 1692788558 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "23e7e3ef-8d33-4171-966d-a6cfde3cf9a7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/5 597", + "handlers": [], + "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, + "duration": 0.535978639, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783481 + }, + { + "status": 0, + "executed": 1692783781 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784982 + }, + { + "status": 0, + "executed": 1692785282 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786183 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787384 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787985 + }, + { + "status": 0, + "executed": 1692788285 + }, + { + "status": 0, + "executed": 1692788585 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789485, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7d3bf4cd-791f-4db4-b75c-62c1e8ba10a2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/6 598", + "handlers": [], + "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, + "duration": 0.528560564, + "executed": 1692789509, + "history": [ + { + "status": 0, + "executed": 1692783505 + }, + { + "status": 0, + "executed": 1692783805 + }, + { + "status": 0, + "executed": 1692784105 + }, + { + "status": 0, + "executed": 1692784405 + }, + { + "status": 0, + "executed": 1692784705 + }, + { + "status": 0, + "executed": 1692785006 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785606 + }, + { + "status": 0, + "executed": 1692785906 + }, + { + "status": 0, + "executed": 1692786207 + }, + { + "status": 0, + "executed": 1692786507 + }, + { + "status": 0, + "executed": 1692786807 + }, + { + "status": 0, + "executed": 1692787107 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787708 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788909 + }, + { + "status": 0, + "executed": 1692789209 + }, + { + "status": 0, + "executed": 1692789509 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789509, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4095a23a-dfe8-4a16-ad89-deebf5569309", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789509 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/7 599", + "handlers": [], + "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, + "duration": 0.517674237, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "07996c80-4423-4bdd-8a1a-e6b304450a9a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/8 600", + "handlers": [], + "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, + "duration": 0.544056352, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4abf1ff1-6ea9-482f-80d7-0f8e2391492e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/2/9 601", + "handlers": [], + "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, + "duration": 0.529631731, + "executed": 1692789483, + "history": [ + { + "status": 0, + "executed": 1692783479 + }, + { + "status": 0, + "executed": 1692783779 + }, + { + "status": 0, + "executed": 1692784079 + }, + { + "status": 0, + "executed": 1692784379 + }, + { + "status": 0, + "executed": 1692784679 + }, + { + "status": 0, + "executed": 1692784979 + }, + { + "status": 0, + "executed": 1692785280 + }, + { + "status": 0, + "executed": 1692785580 + }, + { + "status": 0, + "executed": 1692785880 + }, + { + "status": 0, + "executed": 1692786181 + }, + { + "status": 0, + "executed": 1692786481 + }, + { + "status": 0, + "executed": 1692786781 + }, + { + "status": 0, + "executed": 1692787081 + }, + { + "status": 0, + "executed": 1692787382 + }, + { + "status": 0, + "executed": 1692787682 + }, + { + "status": 0, + "executed": 1692787982 + }, + { + "status": 0, + "executed": 1692788283 + }, + { + "status": 0, + "executed": 1692788583 + }, + { + "status": 0, + "executed": 1692788883 + }, + { + "status": 0, + "executed": 1692789183 + }, + { + "status": 0, + "executed": 1692789483 + } + ], + "issued": 1692789483, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789483, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ce9a934e-ed1f-429f-a485-0aa401248ba6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789483 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/0 602", + "handlers": [], + "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, + "duration": 0.47627881, + "executed": 1692789464, + "history": [ + { + "status": 0, + "executed": 1692783458 + }, + { + "status": 0, + "executed": 1692783758 + }, + { + "status": 0, + "executed": 1692784059 + }, + { + "status": 0, + "executed": 1692784359 + }, + { + "status": 0, + "executed": 1692784659 + }, + { + "status": 0, + "executed": 1692784960 + }, + { + "status": 0, + "executed": 1692785260 + }, + { + "status": 0, + "executed": 1692785561 + }, + { + "status": 0, + "executed": 1692785861 + }, + { + "status": 0, + "executed": 1692786161 + }, + { + "status": 0, + "executed": 1692786462 + }, + { + "status": 0, + "executed": 1692786762 + }, + { + "status": 0, + "executed": 1692787062 + }, + { + "status": 0, + "executed": 1692787362 + }, + { + "status": 0, + "executed": 1692787663 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788264 + }, + { + "status": 0, + "executed": 1692788564 + }, + { + "status": 0, + "executed": 1692788864 + }, + { + "status": 0, + "executed": 1692789164 + }, + { + "status": 0, + "executed": 1692789464 + } + ], + "issued": 1692789464, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/0 ingressOctets=2042113957,egressOctets=998812157,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789464, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b1d2c1c8-4234-4ddf-a12b-8db93a497a5b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789465 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/1 603", + "handlers": [], + "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, + "duration": 0.525358361, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "594db881-2feb-4d82-a73a-099fb216018e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/2 604", + "handlers": [], + "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, + "duration": 0.498476943, + "executed": 1692789454, + "history": [ + { + "status": 0, + "executed": 1692783450 + }, + { + "status": 0, + "executed": 1692783750 + }, + { + "status": 0, + "executed": 1692784050 + }, + { + "status": 0, + "executed": 1692784350 + }, + { + "status": 0, + "executed": 1692784651 + }, + { + "status": 0, + "executed": 1692784951 + }, + { + "status": 0, + "executed": 1692785251 + }, + { + "status": 0, + "executed": 1692785552 + }, + { + "status": 0, + "executed": 1692785852 + }, + { + "status": 0, + "executed": 1692786152 + }, + { + "status": 0, + "executed": 1692786452 + }, + { + "status": 0, + "executed": 1692786753 + }, + { + "status": 0, + "executed": 1692787053 + }, + { + "status": 0, + "executed": 1692787353 + }, + { + "status": 0, + "executed": 1692787654 + }, + { + "status": 0, + "executed": 1692787954 + }, + { + "status": 0, + "executed": 1692788254 + }, + { + "status": 0, + "executed": 1692788554 + }, + { + "status": 0, + "executed": 1692788854 + }, + { + "status": 0, + "executed": 1692789154 + }, + { + "status": 0, + "executed": 1692789454 + } + ], + "issued": 1692789454, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789454, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "74a543f6-c1d0-4abe-98c6-7cd4c6109bdd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789455 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/3 605", + "handlers": [], + "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, + "duration": 0.510249459, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784975 + }, + { + "status": 0, + "executed": 1692785275 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786176 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787377 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787978 + }, + { + "status": 0, + "executed": 1692788278 + }, + { + "status": 0, + "executed": 1692788578 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789478, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c0eff869-71da-4bfd-930a-317531bea626", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789479 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/4 606", + "handlers": [], + "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, + "duration": 0.478270494, + "executed": 1692789477, + "history": [ + { + "status": 0, + "executed": 1692783472 + }, + { + "status": 0, + "executed": 1692783772 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784373 + }, + { + "status": 0, + "executed": 1692784673 + }, + { + "status": 0, + "executed": 1692784973 + }, + { + "status": 0, + "executed": 1692785274 + }, + { + "status": 0, + "executed": 1692785574 + }, + { + "status": 0, + "executed": 1692785874 + }, + { + "status": 0, + "executed": 1692786175 + }, + { + "status": 0, + "executed": 1692786475 + }, + { + "status": 0, + "executed": 1692786775 + }, + { + "status": 0, + "executed": 1692787075 + }, + { + "status": 0, + "executed": 1692787376 + }, + { + "status": 0, + "executed": 1692787676 + }, + { + "status": 0, + "executed": 1692787976 + }, + { + "status": 0, + "executed": 1692788277 + }, + { + "status": 0, + "executed": 1692788577 + }, + { + "status": 0, + "executed": 1692788877 + }, + { + "status": 0, + "executed": 1692789177 + }, + { + "status": 0, + "executed": 1692789477 + } + ], + "issued": 1692789477, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789477, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d7483242-17dc-45f7-a251-3b576677c1ed", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789477 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/5 607", + "handlers": [], + "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, + "duration": 0.54656997, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a5e30158-d2f5-4080-825b-7482c12d8a28", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6 608", + "handlers": [], + "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, + "duration": 0.683254513, + "executed": 1692789441, + "history": [ + { + "status": 0, + "executed": 1692783437 + }, + { + "status": 0, + "executed": 1692783737 + }, + { + "status": 0, + "executed": 1692784037 + }, + { + "status": 0, + "executed": 1692784337 + }, + { + "status": 0, + "executed": 1692784637 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785238 + }, + { + "status": 0, + "executed": 1692785538 + }, + { + "status": 0, + "executed": 1692785838 + }, + { + "status": 0, + "executed": 1692786139 + }, + { + "status": 0, + "executed": 1692786439 + }, + { + "status": 0, + "executed": 1692786739 + }, + { + "status": 0, + "executed": 1692787039 + }, + { + "status": 0, + "executed": 1692787340 + }, + { + "status": 0, + "executed": 1692787640 + }, + { + "status": 0, + "executed": 1692787940 + }, + { + "status": 0, + "executed": 1692788240 + }, + { + "status": 0, + "executed": 1692788540 + }, + { + "status": 0, + "executed": 1692788841 + }, + { + "status": 0, + "executed": 1692789141 + }, + { + "status": 0, + "executed": 1692789441 + } + ], + "issued": 1692789441, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/6 ingressOctets=257230433536,egressOctets=104208566880,ingressErrors=117355,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789441, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "953b401e-dd5c-49a1-a8ea-e1b3b377829f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789441 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.200 767", + "handlers": [], + "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, + "duration": 0.533529429, + "executed": 1692789462, + "history": [ + { + "status": 0, + "executed": 1692783457 + }, + { + "status": 0, + "executed": 1692783757 + }, + { + "status": 0, + "executed": 1692784058 + }, + { + "status": 0, + "executed": 1692784358 + }, + { + "status": 0, + "executed": 1692784658 + }, + { + "status": 0, + "executed": 1692784958 + }, + { + "status": 0, + "executed": 1692785259 + }, + { + "status": 0, + "executed": 1692785559 + }, + { + "status": 0, + "executed": 1692785859 + }, + { + "status": 0, + "executed": 1692786160 + }, + { + "status": 0, + "executed": 1692786460 + }, + { + "status": 0, + "executed": 1692786760 + }, + { + "status": 0, + "executed": 1692787060 + }, + { + "status": 0, + "executed": 1692787361 + }, + { + "status": 0, + "executed": 1692787661 + }, + { + "status": 0, + "executed": 1692787961 + }, + { + "status": 0, + "executed": 1692788262 + }, + { + "status": 0, + "executed": 1692788562 + }, + { + "status": 0, + "executed": 1692788862 + }, + { + "status": 0, + "executed": 1692789162 + }, + { + "status": 0, + "executed": 1692789462 + } + ], + "issued": 1692789462, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/6.200 ingressOctets=0,egressOctets=462824536,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789462, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-6.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1ec57616-34bd-45a4-a90b-36271bc18de0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789463 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.23 834", + "handlers": [], + "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, + "duration": 0.53577679, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/6.23 ingressOctets=804522349,egressOctets=259554601,ingressErrors=0,egressErrors=0,ingressOctetsv6=2907672,egressOctetsv6=2907928,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-6.23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d7745433-54ff-4c85-b43f-2f30881e7db2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.25 1175", + "handlers": [], + "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, + "duration": 0.552422479, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/6.25 ingressOctets=700842495,egressOctets=74405296,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-6.25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "937ed7c6-7ca8-47e4-9b37-c7ba3e9565db", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.3005 772", + "handlers": [], + "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, + "duration": 0.597580506, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/6.3005 ingressOctets=12022218495,egressOctets=93436577120,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-6.3005", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d68a5cb3-9eec-4f73-88f1-a2a4bcfe4741", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.60 759", + "handlers": [], + "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, + "duration": 0.586443937, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/6.60 ingressOctets=0,egressOctets=396663002,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-6.60", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc3a3105-6eb0-400b-9081-fa3abca030ed", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.7 774", + "handlers": [], + "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, + "duration": 0.456517934, + "executed": 1692789468, + "history": [ + { + "status": 0, + "executed": 1692783463 + }, + { + "status": 0, + "executed": 1692783763 + }, + { + "status": 0, + "executed": 1692784063 + }, + { + "status": 0, + "executed": 1692784364 + }, + { + "status": 0, + "executed": 1692784664 + }, + { + "status": 0, + "executed": 1692784964 + }, + { + "status": 0, + "executed": 1692785264 + }, + { + "status": 0, + "executed": 1692785565 + }, + { + "status": 0, + "executed": 1692785865 + }, + { + "status": 0, + "executed": 1692786165 + }, + { + "status": 0, + "executed": 1692786466 + }, + { + "status": 0, + "executed": 1692786766 + }, + { + "status": 0, + "executed": 1692787066 + }, + { + "status": 0, + "executed": 1692787366 + }, + { + "status": 0, + "executed": 1692787667 + }, + { + "status": 0, + "executed": 1692787967 + }, + { + "status": 0, + "executed": 1692788267 + }, + { + "status": 0, + "executed": 1692788567 + }, + { + "status": 0, + "executed": 1692788868 + }, + { + "status": 0, + "executed": 1692789168 + }, + { + "status": 0, + "executed": 1692789468 + } + ], + "issued": 1692789467, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/6.7 ingressOctets=2808813289,egressOctets=2178009792,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789468, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-6.7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7314220e-42cf-4828-a337-cd9fae8f1943", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789468 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.93 762", + "handlers": [], + "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, + "duration": 0.510659416, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784346 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/6.93 ingressOctets=0,egressOctets=347534758,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-6.93", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "50b7f1b7-6e33-48fa-94a4-ca8f65ee49d3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/6.991 1153", + "handlers": [], + "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, + "duration": 0.513239247, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786447 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/6.991 ingressOctets=240114371609,egressOctets=6419545757,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-6.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "da5ff322-8274-4c16-9986-23ec3f045bee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/7 609", + "handlers": [], + "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, + "duration": 0.478177465, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "47f817ca-8aff-4b39-8688-6deffbd3baca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/8 610", + "handlers": [], + "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, + "duration": 0.468728532, + "executed": 1692789451, + "history": [ + { + "status": 0, + "executed": 1692783446 + }, + { + "status": 0, + "executed": 1692783746 + }, + { + "status": 0, + "executed": 1692784047 + }, + { + "status": 0, + "executed": 1692784347 + }, + { + "status": 0, + "executed": 1692784647 + }, + { + "status": 0, + "executed": 1692784947 + }, + { + "status": 0, + "executed": 1692785248 + }, + { + "status": 0, + "executed": 1692785548 + }, + { + "status": 0, + "executed": 1692785848 + }, + { + "status": 0, + "executed": 1692786149 + }, + { + "status": 0, + "executed": 1692786449 + }, + { + "status": 0, + "executed": 1692786749 + }, + { + "status": 0, + "executed": 1692787049 + }, + { + "status": 0, + "executed": 1692787350 + }, + { + "status": 0, + "executed": 1692787650 + }, + { + "status": 0, + "executed": 1692787950 + }, + { + "status": 0, + "executed": 1692788250 + }, + { + "status": 0, + "executed": 1692788550 + }, + { + "status": 0, + "executed": 1692788851 + }, + { + "status": 0, + "executed": 1692789151 + }, + { + "status": 0, + "executed": 1692789451 + } + ], + "issued": 1692789451, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789451, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a8829a63-aac8-445f-a469-036c495fb4fa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789451 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net ge-0/3/9 611", + "handlers": [], + "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, + "duration": 0.555068563, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=ge-0/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-ge-0-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2069af54-e4fe-4d8b-a509-3876c9202d43", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net irb.999 660", + "handlers": [], + "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, + "duration": 0.59051302, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=irb.999 ingressOctets=3854412321,egressOctets=501846729,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-irb.999", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "84deface-0bde-49ef-a2be-ced14bd71090", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789461 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net lt-0/0/0 745", + "handlers": [], + "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, + "duration": 1.381533274, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783516 + }, + { + "status": 0, + "executed": 1692783816 + }, + { + "status": 0, + "executed": 1692784116 + }, + { + "status": 0, + "executed": 1692784416 + }, + { + "status": 0, + "executed": 1692784716 + }, + { + "status": 0, + "executed": 1692785017 + }, + { + "status": 0, + "executed": 1692785317 + }, + { + "status": 0, + "executed": 1692785617 + }, + { + "status": 0, + "executed": 1692785917 + }, + { + "status": 0, + "executed": 1692786218 + }, + { + "status": 0, + "executed": 1692786518 + }, + { + "status": 0, + "executed": 1692786818 + }, + { + "status": 0, + "executed": 1692787118 + }, + { + "status": 0, + "executed": 1692787419 + }, + { + "status": 0, + "executed": 1692787719 + }, + { + "status": 0, + "executed": 1692788020 + }, + { + "status": 0, + "executed": 1692788320 + }, + { + "status": 0, + "executed": 1692788620 + }, + { + "status": 0, + "executed": 1692788920 + }, + { + "status": 0, + "executed": 1692789220 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=lt-0/0/0 ingressOctets=4381629437734,egressOctets=4386454076167,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-lt-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f480296b-3880-4dc0-af8d-da00583951cf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net lt-0/0/0.16 791", + "handlers": [], + "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, + "duration": 0.492520817, + "executed": 1692789513, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784109 + }, + { + "status": 0, + "executed": 1692784409 + }, + { + "status": 0, + "executed": 1692784709 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785610 + }, + { + "status": 0, + "executed": 1692785910 + }, + { + "status": 0, + "executed": 1692786211 + }, + { + "status": 0, + "executed": 1692786511 + }, + { + "status": 0, + "executed": 1692786811 + }, + { + "status": 0, + "executed": 1692787111 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787712 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788913 + }, + { + "status": 0, + "executed": 1692789213 + }, + { + "status": 0, + "executed": 1692789513 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=lt-0/0/0.16 ingressOctets=613823193,egressOctets=4385720963870,ingressErrors=0,egressErrors=0,ingressOctetsv6=437592,egressOctetsv6=3906009723,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789513, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-lt-0-0-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "721c6942-a1b8-403a-9198-5f098fee3e6f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789513 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net lt-0/0/0.61 800", + "handlers": [], + "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, + "duration": 0.502345078, + "executed": 1692789535, + "history": [ + { + "status": 0, + "executed": 1692783531 + }, + { + "status": 0, + "executed": 1692783831 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785032 + }, + { + "status": 0, + "executed": 1692785332 + }, + { + "status": 0, + "executed": 1692785632 + }, + { + "status": 0, + "executed": 1692785932 + }, + { + "status": 0, + "executed": 1692786233 + }, + { + "status": 0, + "executed": 1692786533 + }, + { + "status": 0, + "executed": 1692786833 + }, + { + "status": 0, + "executed": 1692787133 + }, + { + "status": 0, + "executed": 1692787434 + }, + { + "status": 0, + "executed": 1692787734 + }, + { + "status": 0, + "executed": 1692788035 + }, + { + "status": 0, + "executed": 1692788335 + }, + { + "status": 0, + "executed": 1692788635 + }, + { + "status": 0, + "executed": 1692788935 + }, + { + "status": 0, + "executed": 1692789235 + }, + { + "status": 0, + "executed": 1692789535 + } + ], + "issued": 1692789535, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=lt-0/0/0.61 ingressOctets=4381017744127,egressOctets=660720337,ingressErrors=0,egressErrors=0,ingressOctetsv6=42498632812,egressOctetsv6=1016068,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789535, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-lt-0-0-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "27c98faf-6f43-4539-a9e3-30d0e95e444f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789535 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-0/0/0 588", + "handlers": [], + "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, + "duration": 0.57630273, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783545 + }, + { + "status": 0, + "executed": 1692783846 + }, + { + "status": 0, + "executed": 1692784146 + }, + { + "status": 0, + "executed": 1692784446 + }, + { + "status": 0, + "executed": 1692784746 + }, + { + "status": 0, + "executed": 1692785046 + }, + { + "status": 0, + "executed": 1692785346 + }, + { + "status": 0, + "executed": 1692785646 + }, + { + "status": 0, + "executed": 1692785946 + }, + { + "status": 0, + "executed": 1692786247 + }, + { + "status": 0, + "executed": 1692786547 + }, + { + "status": 0, + "executed": 1692786847 + }, + { + "status": 0, + "executed": 1692787147 + }, + { + "status": 0, + "executed": 1692787448 + }, + { + "status": 0, + "executed": 1692787748 + }, + { + "status": 0, + "executed": 1692788049 + }, + { + "status": 0, + "executed": 1692788349 + }, + { + "status": 0, + "executed": 1692788649 + }, + { + "status": 0, + "executed": 1692788949 + }, + { + "status": 0, + "executed": 1692789249 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-0/0/0 ingressOctets=79963554707872,egressOctets=55996810874190,ingressErrors=12735,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a687a23e-91fd-4528-af5f-25b18a9cb8f2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-0/0/1 589", + "handlers": [], + "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, + "duration": 0.55619741, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-0/0/1 ingressOctets=84920952063507,egressOctets=56328238142200,ingressErrors=3909,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "363fab8d-b853-4d70-a60f-58b7160a8bf6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-0/1/0 590", + "handlers": [], + "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, + "duration": 0.48725319, + "executed": 1692789468, + "history": [ + { + "status": 0, + "executed": 1692783463 + }, + { + "status": 0, + "executed": 1692783763 + }, + { + "status": 0, + "executed": 1692784063 + }, + { + "status": 0, + "executed": 1692784364 + }, + { + "status": 0, + "executed": 1692784664 + }, + { + "status": 0, + "executed": 1692784964 + }, + { + "status": 0, + "executed": 1692785264 + }, + { + "status": 0, + "executed": 1692785565 + }, + { + "status": 0, + "executed": 1692785865 + }, + { + "status": 0, + "executed": 1692786165 + }, + { + "status": 0, + "executed": 1692786466 + }, + { + "status": 0, + "executed": 1692786766 + }, + { + "status": 0, + "executed": 1692787066 + }, + { + "status": 0, + "executed": 1692787366 + }, + { + "status": 0, + "executed": 1692787667 + }, + { + "status": 0, + "executed": 1692787967 + }, + { + "status": 0, + "executed": 1692788267 + }, + { + "status": 0, + "executed": 1692788567 + }, + { + "status": 0, + "executed": 1692788868 + }, + { + "status": 0, + "executed": 1692789168 + }, + { + "status": 0, + "executed": 1692789468 + } + ], + "issued": 1692789467, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-0/1/0 ingressOctets=75980021789413,egressOctets=56155734674292,ingressErrors=69,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789468, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cee08ef3-56c4-4209-a12d-b5095fcee71c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789468 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-0/1/1 591", + "handlers": [], + "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, + "duration": 0.536245839, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-0/1/1 ingressOctets=82859902166560,egressOctets=56344093156163,ingressErrors=73,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1b3c0457-b15f-4a09-a6a9-5ffae6743596", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/0/0 657", + "handlers": [], + "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, + "duration": 0.502095779, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784127 + }, + { + "status": 0, + "executed": 1692784427 + }, + { + "status": 0, + "executed": 1692784727 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785630 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787430 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788031 + }, + { + "status": 0, + "executed": 1692788331 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789531, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-1/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5d97dae4-ec04-4151-bf0b-eb05f0527909", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/0/1 673", + "handlers": [], + "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, + "duration": 1.472020689, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783516 + }, + { + "status": 0, + "executed": 1692783816 + }, + { + "status": 0, + "executed": 1692784116 + }, + { + "status": 0, + "executed": 1692784416 + }, + { + "status": 0, + "executed": 1692784716 + }, + { + "status": 0, + "executed": 1692785017 + }, + { + "status": 0, + "executed": 1692785317 + }, + { + "status": 0, + "executed": 1692785617 + }, + { + "status": 0, + "executed": 1692785917 + }, + { + "status": 0, + "executed": 1692786218 + }, + { + "status": 0, + "executed": 1692786518 + }, + { + "status": 0, + "executed": 1692786818 + }, + { + "status": 0, + "executed": 1692787118 + }, + { + "status": 0, + "executed": 1692787419 + }, + { + "status": 0, + "executed": 1692787719 + }, + { + "status": 0, + "executed": 1692788020 + }, + { + "status": 0, + "executed": 1692788320 + }, + { + "status": 0, + "executed": 1692788620 + }, + { + "status": 0, + "executed": 1692788920 + }, + { + "status": 0, + "executed": 1692789220 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-1/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aab0f078-f93b-43ad-a5f3-36dfeb087698", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/0/2 674", + "handlers": [], + "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, + "duration": 0.559736835, + "executed": 1692789498, + "history": [ + { + "status": 0, + "executed": 1692783493 + }, + { + "status": 0, + "executed": 1692783793 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784994 + }, + { + "status": 0, + "executed": 1692785294 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787096 + }, + { + "status": 0, + "executed": 1692787397 + }, + { + "status": 0, + "executed": 1692787697 + }, + { + "status": 0, + "executed": 1692787998 + }, + { + "status": 0, + "executed": 1692788298 + }, + { + "status": 0, + "executed": 1692788598 + }, + { + "status": 0, + "executed": 1692788898 + }, + { + "status": 0, + "executed": 1692789199 + }, + { + "status": 0, + "executed": 1692789498 + } + ], + "issued": 1692789498, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-1/0/2 ingressOctets=23409129618,egressOctets=871532683205,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789498, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-1-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f20a7495-2440-46f9-952a-27fe08c6b456", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789499 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/0/3 675", + "handlers": [], + "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, + "duration": 0.507981511, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783451 + }, + { + "status": 0, + "executed": 1692783751 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784352 + }, + { + "status": 0, + "executed": 1692784652 + }, + { + "status": 0, + "executed": 1692784952 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785553 + }, + { + "status": 0, + "executed": 1692785853 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786754 + }, + { + "status": 0, + "executed": 1692787054 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787655 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-1/0/3 ingressOctets=3091408990449614,egressOctets=1483473037885162,ingressErrors=5,egressErrors=0,ingressDiscards=0,egressDiscards=3676664\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-1-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ba3719a7-6f35-48ba-b5f5-bc443d9592db", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/2/0 677", + "handlers": [], + "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, + "duration": 0.546477143, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-1/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3f1e6dcb-202e-4b02-8c9f-af1f2531d4f0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/2/1 678", + "handlers": [], + "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, + "duration": 0.620271035, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785595 + }, + { + "status": 0, + "executed": 1692785895 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-1/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "095cfafa-166f-42e5-883b-43fb59398199", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789500 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/2/2 679", + "handlers": [], + "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, + "duration": 0.536570544, + "executed": 1692789426, + "history": [ + { + "status": 0, + "executed": 1692783422 + }, + { + "status": 0, + "executed": 1692783722 + }, + { + "status": 0, + "executed": 1692784022 + }, + { + "status": 0, + "executed": 1692784322 + }, + { + "status": 0, + "executed": 1692784623 + }, + { + "status": 0, + "executed": 1692784923 + }, + { + "status": 0, + "executed": 1692785223 + }, + { + "status": 0, + "executed": 1692785523 + }, + { + "status": 0, + "executed": 1692785823 + }, + { + "status": 0, + "executed": 1692786124 + }, + { + "status": 0, + "executed": 1692786424 + }, + { + "status": 0, + "executed": 1692786724 + }, + { + "status": 0, + "executed": 1692787024 + }, + { + "status": 0, + "executed": 1692787325 + }, + { + "status": 0, + "executed": 1692787625 + }, + { + "status": 0, + "executed": 1692787925 + }, + { + "status": 0, + "executed": 1692788225 + }, + { + "status": 0, + "executed": 1692788525 + }, + { + "status": 0, + "executed": 1692788826 + }, + { + "status": 0, + "executed": 1692789126 + }, + { + "status": 0, + "executed": 1692789426 + } + ], + "issued": 1692789426, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-1/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789426, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-1-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "42bc648d-f592-42fa-adfc-01b15549c497", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789427 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-1/2/3 680", + "handlers": [], + "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, + "duration": 0.496400494, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-1/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "18824d77-eab6-4d66-a1e4-7682d7fbe1cb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/0/0 632", + "handlers": [], + "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, + "duration": 0.514710673, + "executed": 1692789512, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784109 + }, + { + "status": 0, + "executed": 1692784409 + }, + { + "status": 0, + "executed": 1692784709 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785610 + }, + { + "status": 0, + "executed": 1692785910 + }, + { + "status": 0, + "executed": 1692786210 + }, + { + "status": 0, + "executed": 1692786510 + }, + { + "status": 0, + "executed": 1692786811 + }, + { + "status": 0, + "executed": 1692787111 + }, + { + "status": 0, + "executed": 1692787411 + }, + { + "status": 0, + "executed": 1692787712 + }, + { + "status": 0, + "executed": 1692788012 + }, + { + "status": 0, + "executed": 1692788312 + }, + { + "status": 0, + "executed": 1692788612 + }, + { + "status": 0, + "executed": 1692788913 + }, + { + "status": 0, + "executed": 1692789213 + }, + { + "status": 0, + "executed": 1692789512 + } + ], + "issued": 1692789512, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-2/0/0 ingressOctets=267958928099389,egressOctets=272168181448026,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789512, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "30485cad-069a-47c5-84a1-81661c4d6d92", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789513 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/0/1 633", + "handlers": [], + "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, + "duration": 0.626180437, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786123 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-2/0/1 ingressOctets=268288818648493,egressOctets=272055224733504,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-2-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cea8fecd-3075-4d3b-b733-4dff513870c7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/0/2 634", + "handlers": [], + "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, + "duration": 0.648476738, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-2/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-2-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e6a08d9f-5a82-479e-a679-94858d5f5df1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/0/3 635", + "handlers": [], + "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, + "duration": 0.50507673, + "executed": 1692789513, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786211 + }, + { + "status": 0, + "executed": 1692786511 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789513 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-2/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789513, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-2-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d3ab98f9-64b5-401c-b670-7da4c5b56d14", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/2/0 636", + "handlers": [], + "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, + "duration": 0.536582036, + "executed": 1692789440, + "history": [ + { + "status": 0, + "executed": 1692783436 + }, + { + "status": 0, + "executed": 1692783736 + }, + { + "status": 0, + "executed": 1692784036 + }, + { + "status": 0, + "executed": 1692784336 + }, + { + "status": 0, + "executed": 1692784636 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785237 + }, + { + "status": 0, + "executed": 1692785537 + }, + { + "status": 0, + "executed": 1692785837 + }, + { + "status": 0, + "executed": 1692786137 + }, + { + "status": 0, + "executed": 1692786438 + }, + { + "status": 0, + "executed": 1692786738 + }, + { + "status": 0, + "executed": 1692787038 + }, + { + "status": 0, + "executed": 1692787339 + }, + { + "status": 0, + "executed": 1692787639 + }, + { + "status": 0, + "executed": 1692787939 + }, + { + "status": 0, + "executed": 1692788239 + }, + { + "status": 0, + "executed": 1692788539 + }, + { + "status": 0, + "executed": 1692788840 + }, + { + "status": 0, + "executed": 1692789140 + }, + { + "status": 0, + "executed": 1692789440 + } + ], + "issued": 1692789440, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-2/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789440, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-2-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fb818a73-e892-4dcb-a062-74b10841d99d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789440 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/2/1 637", + "handlers": [], + "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, + "duration": 0.556624851, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-2/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-2-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8ee0ed98-947c-423e-9a22-07f32cb54c08", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/2/2 644", + "handlers": [], + "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, + "duration": 0.628448604, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-2/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-2-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "716ac272-6fe7-48db-8380-842970e4572c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-2/2/3 645", + "handlers": [], + "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, + "duration": 0.475990201, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-2/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-2-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3bad7bc0-9e10-47ed-a667-ea99d6efd82a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/0 682", + "handlers": [], + "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, + "duration": 0.57140801, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784617 + }, + { + "status": 0, + "executed": 1692784917 + }, + { + "status": 0, + "executed": 1692785217 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787319 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/0/0 ingressOctets=7385153872,egressOctets=6017973631,ingressErrors=4,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "970837cb-9b8d-4e61-9b03-43cc5ea04b2d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/0.0 786", + "handlers": [], + "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, + "duration": 0.519052861, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783460 + }, + { + "status": 0, + "executed": 1692783760 + }, + { + "status": 0, + "executed": 1692784060 + }, + { + "status": 0, + "executed": 1692784361 + }, + { + "status": 0, + "executed": 1692784661 + }, + { + "status": 0, + "executed": 1692784961 + }, + { + "status": 0, + "executed": 1692785261 + }, + { + "status": 0, + "executed": 1692785562 + }, + { + "status": 0, + "executed": 1692785862 + }, + { + "status": 0, + "executed": 1692786162 + }, + { + "status": 0, + "executed": 1692786463 + }, + { + "status": 0, + "executed": 1692786763 + }, + { + "status": 0, + "executed": 1692787063 + }, + { + "status": 0, + "executed": 1692787363 + }, + { + "status": 0, + "executed": 1692787664 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788265 + }, + { + "status": 0, + "executed": 1692788565 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789465, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/0/0.0 ingressOctets=7385139206,egressOctets=6017958845,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-0-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "612b5c15-40b6-4230-b23f-9ade0e2b3184", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789466 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/1 684", + "handlers": [], + "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, + "duration": 0.498745111, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/0/1 ingressOctets=4530090139,egressOctets=6581731596,ingressErrors=7,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3690f2c9-d0e6-4a49-a3a5-f00d061dbfa2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789496 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/1.0 787", + "handlers": [], + "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, + "duration": 0.471132068, + "executed": 1692789472, + "history": [ + { + "status": 0, + "executed": 1692783467 + }, + { + "status": 0, + "executed": 1692783767 + }, + { + "status": 0, + "executed": 1692784067 + }, + { + "status": 0, + "executed": 1692784368 + }, + { + "status": 0, + "executed": 1692784668 + }, + { + "status": 0, + "executed": 1692784968 + }, + { + "status": 0, + "executed": 1692785268 + }, + { + "status": 0, + "executed": 1692785569 + }, + { + "status": 0, + "executed": 1692785869 + }, + { + "status": 0, + "executed": 1692786169 + }, + { + "status": 0, + "executed": 1692786470 + }, + { + "status": 0, + "executed": 1692786770 + }, + { + "status": 0, + "executed": 1692787070 + }, + { + "status": 0, + "executed": 1692787370 + }, + { + "status": 0, + "executed": 1692787671 + }, + { + "status": 0, + "executed": 1692787971 + }, + { + "status": 0, + "executed": 1692788271 + }, + { + "status": 0, + "executed": 1692788571 + }, + { + "status": 0, + "executed": 1692788872 + }, + { + "status": 0, + "executed": 1692789172 + }, + { + "status": 0, + "executed": 1692789472 + } + ], + "issued": 1692789471, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/0/1.0 ingressOctets=4530088604,egressOctets=6581730040,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789472, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-0-1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8870ca31-1abf-43a0-a2e6-98df57f3efd8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789472 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/2 687", + "handlers": [], + "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, + "duration": 0.577329135, + "executed": 1692789442, + "history": [ + { + "status": 0, + "executed": 1692783437 + }, + { + "status": 0, + "executed": 1692783737 + }, + { + "status": 0, + "executed": 1692784038 + }, + { + "status": 0, + "executed": 1692784338 + }, + { + "status": 0, + "executed": 1692784638 + }, + { + "status": 0, + "executed": 1692784938 + }, + { + "status": 0, + "executed": 1692785239 + }, + { + "status": 0, + "executed": 1692785539 + }, + { + "status": 0, + "executed": 1692785839 + }, + { + "status": 0, + "executed": 1692786139 + }, + { + "status": 0, + "executed": 1692786440 + }, + { + "status": 0, + "executed": 1692786740 + }, + { + "status": 0, + "executed": 1692787040 + }, + { + "status": 0, + "executed": 1692787341 + }, + { + "status": 0, + "executed": 1692787641 + }, + { + "status": 0, + "executed": 1692787941 + }, + { + "status": 0, + "executed": 1692788241 + }, + { + "status": 0, + "executed": 1692788541 + }, + { + "status": 0, + "executed": 1692788842 + }, + { + "status": 0, + "executed": 1692789142 + }, + { + "status": 0, + "executed": 1692789442 + } + ], + "issued": 1692789442, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/0/2 ingressOctets=1409719258,egressOctets=1309581872,ingressErrors=48,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789442, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "20e60e05-9be2-4454-8308-d0cf63aa1ba8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789442 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/2.105 1154", + "handlers": [], + "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, + "duration": 0.527075023, + "executed": 1692789511, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784107 + }, + { + "status": 0, + "executed": 1692784407 + }, + { + "status": 0, + "executed": 1692784707 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785608 + }, + { + "status": 0, + "executed": 1692785908 + }, + { + "status": 0, + "executed": 1692786209 + }, + { + "status": 0, + "executed": 1692786509 + }, + { + "status": 0, + "executed": 1692786809 + }, + { + "status": 0, + "executed": 1692787109 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787710 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788911 + }, + { + "status": 0, + "executed": 1692789211 + }, + { + "status": 0, + "executed": 1692789511 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/0/2.105 ingressOctets=44709713,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789511, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-0-2.105", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3366b9a7-0d8c-457c-9868-614334a26e00", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789512 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/2.106 1155", + "handlers": [], + "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, + "duration": 0.490272678, + "executed": 1692789493, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786491 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789493 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/0/2.106 ingressOctets=152797323,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789493, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-0-2.106", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "71d46e7c-33cd-4231-b6aa-e4f552754dc5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789494 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/2.1955 816", + "handlers": [], + "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, + "duration": 0.562197828, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784621 + }, + { + "status": 0, + "executed": 1692784921 + }, + { + "status": 0, + "executed": 1692785221 + }, + { + "status": 0, + "executed": 1692785521 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787323 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/0/2.1955 ingressOctets=1212214160,egressOctets=1309581064,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-0-2.1955", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b677a67b-f0d3-45c9-be49-55a61dc461b3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789425 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/0/3 688", + "handlers": [], + "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, + "duration": 0.505122691, + "executed": 1692789432, + "history": [ + { + "status": 0, + "executed": 1692783427 + }, + { + "status": 0, + "executed": 1692783727 + }, + { + "status": 0, + "executed": 1692784027 + }, + { + "status": 0, + "executed": 1692784327 + }, + { + "status": 0, + "executed": 1692784627 + }, + { + "status": 0, + "executed": 1692784927 + }, + { + "status": 0, + "executed": 1692785227 + }, + { + "status": 0, + "executed": 1692785527 + }, + { + "status": 0, + "executed": 1692785828 + }, + { + "status": 0, + "executed": 1692786128 + }, + { + "status": 0, + "executed": 1692786429 + }, + { + "status": 0, + "executed": 1692786729 + }, + { + "status": 0, + "executed": 1692787029 + }, + { + "status": 0, + "executed": 1692787329 + }, + { + "status": 0, + "executed": 1692787629 + }, + { + "status": 0, + "executed": 1692787930 + }, + { + "status": 0, + "executed": 1692788230 + }, + { + "status": 0, + "executed": 1692788530 + }, + { + "status": 0, + "executed": 1692788830 + }, + { + "status": 0, + "executed": 1692789132 + }, + { + "status": 0, + "executed": 1692789432 + } + ], + "issued": 1692789432, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789432, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d33eb894-67c3-4da0-a72a-2f01c4c325ac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/2/0 693", + "handlers": [], + "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, + "duration": 0.489110897, + "executed": 1692789509, + "history": [ + { + "status": 0, + "executed": 1692783504 + }, + { + "status": 0, + "executed": 1692783804 + }, + { + "status": 0, + "executed": 1692784105 + }, + { + "status": 0, + "executed": 1692784405 + }, + { + "status": 0, + "executed": 1692784705 + }, + { + "status": 0, + "executed": 1692785005 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785606 + }, + { + "status": 0, + "executed": 1692785906 + }, + { + "status": 0, + "executed": 1692786207 + }, + { + "status": 0, + "executed": 1692786507 + }, + { + "status": 0, + "executed": 1692786807 + }, + { + "status": 0, + "executed": 1692787107 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787708 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788909 + }, + { + "status": 0, + "executed": 1692789209 + }, + { + "status": 0, + "executed": 1692789509 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789509, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ab3e7f74-a352-4366-ac9a-961dcadb8e04", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789509 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/2/1 690", + "handlers": [], + "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, + "duration": 0.469888661, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d13ab520-b2b6-4ebb-a15b-75676f450ea9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/2/2 691", + "handlers": [], + "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, + "duration": 0.644413023, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783429 + }, + { + "status": 0, + "executed": 1692783729 + }, + { + "status": 0, + "executed": 1692784029 + }, + { + "status": 0, + "executed": 1692784329 + }, + { + "status": 0, + "executed": 1692784629 + }, + { + "status": 0, + "executed": 1692784929 + }, + { + "status": 0, + "executed": 1692785229 + }, + { + "status": 0, + "executed": 1692785529 + }, + { + "status": 0, + "executed": 1692785830 + }, + { + "status": 0, + "executed": 1692786130 + }, + { + "status": 0, + "executed": 1692786430 + }, + { + "status": 0, + "executed": 1692786731 + }, + { + "status": 0, + "executed": 1692787031 + }, + { + "status": 0, + "executed": 1692787331 + }, + { + "status": 0, + "executed": 1692787631 + }, + { + "status": 0, + "executed": 1692787932 + }, + { + "status": 0, + "executed": 1692788232 + }, + { + "status": 0, + "executed": 1692788532 + }, + { + "status": 0, + "executed": 1692788832 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f67d442-e6a8-42a7-b616-0ee08c7adbba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-3/2/3 692", + "handlers": [], + "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, + "duration": 0.522446248, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784346 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-3/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-3-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "73c018f9-a904-4ae2-b922-47a6215a23b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/0 912", + "handlers": [], + "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, + "duration": 0.530382618, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783498 + }, + { + "status": 0, + "executed": 1692783798 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692784999 + }, + { + "status": 0, + "executed": 1692785299 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786200 + }, + { + "status": 0, + "executed": 1692786500 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787401 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788002 + }, + { + "status": 0, + "executed": 1692788302 + }, + { + "status": 0, + "executed": 1692788602 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/0/0 ingressOctets=105339633390399,egressOctets=132132210684237,ingressErrors=11,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f47c4541-3adf-403d-8afd-39c02e18cf37", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/1 913", + "handlers": [], + "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, + "duration": 0.534679375, + "executed": 1692789457, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784053 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785254 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787356 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787957 + }, + { + "status": 0, + "executed": 1692788257 + }, + { + "status": 0, + "executed": 1692788557 + }, + { + "status": 0, + "executed": 1692788857 + }, + { + "status": 0, + "executed": 1692789157 + }, + { + "status": 0, + "executed": 1692789457 + } + ], + "issued": 1692789457, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/0/1 ingressOctets=267949109560281,egressOctets=272199714063231,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789457, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4d8935e2-f3da-4ad5-b6c9-c786ccec176c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789458 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/2 914", + "handlers": [], + "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, + "duration": 0.511905402, + "executed": 1692789530, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786528 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789530 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/0/2 ingressOctets=64163421737316,egressOctets=334043805893871,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=43431553\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789530, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c4956d65-8a94-4523-81a9-2bca976a474f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/3 915", + "handlers": [], + "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, + "duration": 0.584152619, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/0/3 ingressOctets=64666385769640,egressOctets=334213702029774,ingressErrors=9,egressErrors=0,ingressDiscards=0,egressDiscards=20480488\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "805edbc0-254d-4fdc-9021-971938aae46e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/4 916", + "handlers": [], + "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, + "duration": 0.456996348, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787981 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/0/4 ingressOctets=64532555596292,egressOctets=334596347909865,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=7642286\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fd10926f-fa59-4b0e-9ac2-257429fd82e1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/5 917", + "handlers": [], + "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, + "duration": 0.475624085, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786211 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/0/5 ingressOctets=96824132111513,egressOctets=87151715768876,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bbe99335-2b28-48c9-b772-56a07b13c338", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/6 918", + "handlers": [], + "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, + "duration": 3.569935017, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784113 + }, + { + "status": 0, + "executed": 1692784413 + }, + { + "status": 0, + "executed": 1692784713 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789517, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/0/6 ingressOctets=98451113436227,egressOctets=87133176900822,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e8080148-4aca-4082-92b7-b02ecefe10fe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789521 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/7 919", + "handlers": [], + "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, + "duration": 0.521942311, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787981 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/0/7 ingressOctets=47264475611768,egressOctets=44588940833526,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "17b95e4a-01a2-4a78-b153-28a09d322a4b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/0/7.0 1172", + "handlers": [], + "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, + "duration": 0.545059616, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/0/7.0 ingressOctets=47264468623488,egressOctets=44588933832645,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-0-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2c984a51-c279-4f31-bafa-71c11516fe70", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/0 920", + "handlers": [], + "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, + "duration": 0.502398142, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/1/0 ingressOctets=3146635354154639,egressOctets=1487451833716832,ingressErrors=3,egressErrors=0,ingressDiscards=0,egressDiscards=860652\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e2ca0e77-e068-48d7-91e6-6bf1c9265681", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/1 921", + "handlers": [], + "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, + "duration": 0.546673997, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/1/1 ingressOctets=162562841305454,egressOctets=176677403743888,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "144e1a95-7314-4744-be3e-9aea15583a3c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789504 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/2 922", + "handlers": [], + "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, + "duration": 0.466390716, + "executed": 1692789516, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785613 + }, + { + "status": 0, + "executed": 1692785913 + }, + { + "status": 0, + "executed": 1692786214 + }, + { + "status": 0, + "executed": 1692786514 + }, + { + "status": 0, + "executed": 1692786814 + }, + { + "status": 0, + "executed": 1692787114 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787715 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788916 + }, + { + "status": 0, + "executed": 1692789216 + }, + { + "status": 0, + "executed": 1692789516 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/1/2 ingressOctets=162441274036064,egressOctets=175862584567330,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789516, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6449d681-65eb-4d90-b939-9f4609a3dafa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/3 923", + "handlers": [], + "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, + "duration": 0.895085303, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784120 + }, + { + "status": 0, + "executed": 1692784420 + }, + { + "status": 0, + "executed": 1692784720 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785621 + }, + { + "status": 0, + "executed": 1692785921 + }, + { + "status": 0, + "executed": 1692786222 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786822 + }, + { + "status": 0, + "executed": 1692787122 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787723 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788924 + }, + { + "status": 0, + "executed": 1692789224 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/1/3 ingressOctets=30535219820,egressOctets=874371841196,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e8186bf-7eae-47e7-86db-cc883472e10e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/4 924", + "handlers": [], + "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, + "duration": 0.527774806, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/1/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dba972d6-e779-4c4e-a340-9f113807019e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/5 925", + "handlers": [], + "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, + "duration": 0.460060778, + "executed": 1692789513, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784109 + }, + { + "status": 0, + "executed": 1692784409 + }, + { + "status": 0, + "executed": 1692784709 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785610 + }, + { + "status": 0, + "executed": 1692785910 + }, + { + "status": 0, + "executed": 1692786211 + }, + { + "status": 0, + "executed": 1692786511 + }, + { + "status": 0, + "executed": 1692786811 + }, + { + "status": 0, + "executed": 1692787111 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787712 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788913 + }, + { + "status": 0, + "executed": 1692789213 + }, + { + "status": 0, + "executed": 1692789513 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789513, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7da2995a-380e-417f-94c3-dcdfe7fc0525", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789513 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/6 926", + "handlers": [], + "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, + "duration": 0.517751277, + "executed": 1692789513, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786211 + }, + { + "status": 0, + "executed": 1692786511 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789513 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/1/6 ingressOctets=347506071307609,egressOctets=230926981936327,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789513, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-1-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9797a6d0-644e-4868-8500-d2bcdab45fba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/1/7 927", + "handlers": [], + "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, + "duration": 0.472877522, + "executed": 1692789647, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784841 + }, + { + "status": 0, + "executed": 1692785141 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785742 + }, + { + "status": 0, + "executed": 1692786045 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786644 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787545 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788446 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789046 + }, + { + "status": 0, + "executed": 1692789347 + }, + { + "status": 0, + "executed": 1692789647 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/1/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789647, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-1-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d5b5e1b0-3398-42f5-a7da-70b4acca37b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789647 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/0 928", + "handlers": [], + "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, + "duration": 0.610098035, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783843 + }, + { + "status": 0, + "executed": 1692784143 + }, + { + "status": 0, + "executed": 1692784443 + }, + { + "status": 0, + "executed": 1692784743 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786244 + }, + { + "status": 0, + "executed": 1692786544 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787445 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788046 + }, + { + "status": 0, + "executed": 1692788346 + }, + { + "status": 0, + "executed": 1692788646 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3c617768-1ba8-4073-a413-e7b95661af65", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/1 929", + "handlers": [], + "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, + "duration": 0.947776645, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784120 + }, + { + "status": 0, + "executed": 1692784420 + }, + { + "status": 0, + "executed": 1692784720 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785621 + }, + { + "status": 0, + "executed": 1692785921 + }, + { + "status": 0, + "executed": 1692786222 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786822 + }, + { + "status": 0, + "executed": 1692787122 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787723 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788924 + }, + { + "status": 0, + "executed": 1692789224 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/2/1 ingressOctets=268318223729249,egressOctets=272309212962994,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "32ecd58f-caf4-479b-bdd5-e1b14b5e3162", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/2 930", + "handlers": [], + "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, + "duration": 0.694446812, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783843 + }, + { + "status": 0, + "executed": 1692784143 + }, + { + "status": 0, + "executed": 1692784443 + }, + { + "status": 0, + "executed": 1692784743 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786244 + }, + { + "status": 0, + "executed": 1692786544 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787445 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788046 + }, + { + "status": 0, + "executed": 1692788346 + }, + { + "status": 0, + "executed": 1692788646 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8d1d7ada-3227-498e-bd6e-bec2adf70fac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/3 931", + "handlers": [], + "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, + "duration": 0.582103282, + "executed": 1692789617, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789617 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789617, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "97411d37-9a1b-4724-91f5-da1b65a92860", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/4 932", + "handlers": [], + "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, + "duration": 0.499601711, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "af123d31-16f2-42ab-8cae-814e8b7176fc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/5 933", + "handlers": [], + "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, + "duration": 2.6634197889999998, + "executed": 1692789521, + "history": [ + { + "status": 0, + "executed": 1692783514 + }, + { + "status": 0, + "executed": 1692783814 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785015 + }, + { + "status": 0, + "executed": 1692785315 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787417 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788018 + }, + { + "status": 0, + "executed": 1692788318 + }, + { + "status": 0, + "executed": 1692788618 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789521 + } + ], + "issued": 1692789521, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789521, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bd0f7cd5-a162-41fb-a81f-8eb5c39af0c8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/6 934", + "handlers": [], + "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, + "duration": 1.292120244, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783516 + }, + { + "status": 0, + "executed": 1692783816 + }, + { + "status": 0, + "executed": 1692784116 + }, + { + "status": 0, + "executed": 1692784416 + }, + { + "status": 0, + "executed": 1692784716 + }, + { + "status": 0, + "executed": 1692785017 + }, + { + "status": 0, + "executed": 1692785317 + }, + { + "status": 0, + "executed": 1692785617 + }, + { + "status": 0, + "executed": 1692785917 + }, + { + "status": 0, + "executed": 1692786218 + }, + { + "status": 0, + "executed": 1692786518 + }, + { + "status": 0, + "executed": 1692786818 + }, + { + "status": 0, + "executed": 1692787118 + }, + { + "status": 0, + "executed": 1692787419 + }, + { + "status": 0, + "executed": 1692787719 + }, + { + "status": 0, + "executed": 1692788020 + }, + { + "status": 0, + "executed": 1692788320 + }, + { + "status": 0, + "executed": 1692788620 + }, + { + "status": 0, + "executed": 1692788920 + }, + { + "status": 0, + "executed": 1692789220 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e52b5957-eed2-48aa-aab3-8f68ccdcedf3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/2/7 935", + "handlers": [], + "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, + "duration": 0.496354805, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784127 + }, + { + "status": 0, + "executed": 1692784427 + }, + { + "status": 0, + "executed": 1692784727 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785630 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787430 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788031 + }, + { + "status": 0, + "executed": 1692788331 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789531, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "098316fa-767b-4175-9b81-6c913d275e73", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/0 936", + "handlers": [], + "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, + "duration": 0.500443421, + "executed": 1692789444, + "history": [ + { + "status": 0, + "executed": 1692783439 + }, + { + "status": 0, + "executed": 1692783739 + }, + { + "status": 0, + "executed": 1692784039 + }, + { + "status": 0, + "executed": 1692784339 + }, + { + "status": 0, + "executed": 1692784640 + }, + { + "status": 0, + "executed": 1692784940 + }, + { + "status": 0, + "executed": 1692785241 + }, + { + "status": 0, + "executed": 1692785541 + }, + { + "status": 0, + "executed": 1692785841 + }, + { + "status": 0, + "executed": 1692786142 + }, + { + "status": 0, + "executed": 1692786442 + }, + { + "status": 0, + "executed": 1692786742 + }, + { + "status": 0, + "executed": 1692787042 + }, + { + "status": 0, + "executed": 1692787343 + }, + { + "status": 0, + "executed": 1692787643 + }, + { + "status": 0, + "executed": 1692787943 + }, + { + "status": 0, + "executed": 1692788243 + }, + { + "status": 0, + "executed": 1692788543 + }, + { + "status": 0, + "executed": 1692788844 + }, + { + "status": 0, + "executed": 1692789144 + }, + { + "status": 0, + "executed": 1692789444 + } + ], + "issued": 1692789444, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789444, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "89cc0195-1719-4c43-8c14-0e36712461dd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789444 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/1 937", + "handlers": [], + "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, + "duration": 0.484724622, + "executed": 1692789452, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784048 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785249 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786450 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787351 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788852 + }, + { + "status": 0, + "executed": 1692789152 + }, + { + "status": 0, + "executed": 1692789452 + } + ], + "issued": 1692789452, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789452, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7cf11f9a-6cfb-4ca5-8043-cd3801c32995", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/3 939", + "handlers": [], + "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, + "duration": 0.695314097, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785595 + }, + { + "status": 0, + "executed": 1692785895 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d7504cc0-5bfd-4c12-9904-e6818146386f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/4 940", + "handlers": [], + "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, + "duration": 0.551454844, + "executed": 1692789460, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784055 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785256 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786157 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787358 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788860 + }, + { + "status": 0, + "executed": 1692789160 + }, + { + "status": 0, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/3/4 ingressOctets=347068615106603,egressOctets=231714616871215,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789460, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "21f58ff1-cd2a-42e6-8984-6dd8e57dbb9e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789460 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/5 941", + "handlers": [], + "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, + "duration": 0.530854374, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/3/5 ingressOctets=52763121216,egressOctets=87885015664,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a4fa90b7-abc8-4f2c-aa9e-4bc12fcf6f9f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/5.0 1176", + "handlers": [], + "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, + "duration": 0.544976621, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/3/5.0 ingressOctets=52763136569,egressOctets=87925661934,ingressErrors=0,egressErrors=0,ingressOctetsv6=32951296390,egressOctetsv6=59418848052,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-3-5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2dba7701-e44f-4c7e-a2d3-8ec2e7c117b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789504 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/6 942", + "handlers": [], + "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, + "duration": 0.524099822, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/3/6 ingressOctets=1039705056263,egressOctets=807952748079,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d5d6a3cf-31c8-467c-b521-22a5d3b43a3a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/6.0 1177", + "handlers": [], + "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, + "duration": 0.49974557, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/3/6.0 ingressOctets=1039709008999,egressOctets=807996320236,ingressErrors=0,egressErrors=0,ingressOctetsv6=511509083896,egressOctetsv6=423790356601,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-3-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3c0f8059-47d0-405a-8be4-bc8b7d3f3a90", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/7 943", + "handlers": [], + "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, + "duration": 0.569668884, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784621 + }, + { + "status": 0, + "executed": 1692784921 + }, + { + "status": 0, + "executed": 1692785221 + }, + { + "status": 0, + "executed": 1692785521 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786422 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787323 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/3/7 ingressOctets=84511011139166,egressOctets=86995934423769,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "30b042ca-3f4a-43eb-b50d-b132ca5e3586", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789425 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.bud.hu.geant.net xe-5/3/7.0 1178", + "handlers": [], + "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, + "duration": 0.473406427, + "executed": 1692789468, + "history": [ + { + "status": 0, + "executed": 1692783463 + }, + { + "status": 0, + "executed": 1692783763 + }, + { + "status": 0, + "executed": 1692784063 + }, + { + "status": 0, + "executed": 1692784364 + }, + { + "status": 0, + "executed": 1692784664 + }, + { + "status": 0, + "executed": 1692784964 + }, + { + "status": 0, + "executed": 1692785264 + }, + { + "status": 0, + "executed": 1692785565 + }, + { + "status": 0, + "executed": 1692785865 + }, + { + "status": 0, + "executed": 1692786165 + }, + { + "status": 0, + "executed": 1692786466 + }, + { + "status": 0, + "executed": 1692786766 + }, + { + "status": 0, + "executed": 1692787066 + }, + { + "status": 0, + "executed": 1692787366 + }, + { + "status": 0, + "executed": 1692787667 + }, + { + "status": 0, + "executed": 1692787967 + }, + { + "status": 0, + "executed": 1692788267 + }, + { + "status": 0, + "executed": 1692788567 + }, + { + "status": 0, + "executed": 1692788868 + }, + { + "status": 0, + "executed": 1692789168 + }, + { + "status": 0, + "executed": 1692789468 + } + ], + "issued": 1692789467, + "output": "counters,hostname=mx1.bud.hu.geant.net,interface_name=xe-5/3/7.0 ingressOctets=84514493178293,egressOctets=86996023294347,ingressErrors=0,egressErrors=0,ingressOctetsv6=34120116830735,egressOctetsv6=34093159205942,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789468, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.bud.hu.geant.net-xe-5-3-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.bud.hu.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.bud.hu.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "517679ed-e9c8-4a10-9fec-d89216598171", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789468 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.dub.ie.geant.net", + "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, + "duration": 6.357486, + "executed": 1692789479, + "history": [ + { + "status": 1, + "executed": 1692783472 + }, + { + "status": 1, + "executed": 1692783772 + }, + { + "status": 1, + "executed": 1692784076 + }, + { + "status": 1, + "executed": 1692784375 + }, + { + "status": 1, + "executed": 1692784675 + }, + { + "status": 1, + "executed": 1692784976 + }, + { + "status": 1, + "executed": 1692785276 + }, + { + "status": 1, + "executed": 1692785576 + }, + { + "status": 1, + "executed": 1692785876 + }, + { + "status": 1, + "executed": 1692786176 + }, + { + "status": 1, + "executed": 1692786477 + }, + { + "status": 1, + "executed": 1692786777 + }, + { + "status": 1, + "executed": 1692787077 + }, + { + "status": 1, + "executed": 1692787378 + }, + { + "status": 1, + "executed": 1692787678 + }, + { + "status": 1, + "executed": 1692787979 + }, + { + "status": 1, + "executed": 1692788279 + }, + { + "status": 1, + "executed": 1692788579 + }, + { + "status": 1, + "executed": 1692788879 + }, + { + "status": 1, + "executed": 1692789179 + }, + { + "status": 1, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "2023-08-23 11:18:00,191 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:18:00,193 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:18:00,194 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:18:00,194 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.dub.ie.geant.net\n2023-08-23 11:18:00,198 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:18:00,241 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.dub.ie.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.dub.ie.geant.net,subscription=232.223.222.1 octets=1315661601180\n2023-08-23 11:18:06,159 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.2,232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.8,232.223.222.9,232.223.222.10,232.223.222.11,232.223.222.12,232.223.222.13,232.223.222.14,232.223.222.15,232.223.222.16,232.223.222.17,232.223.222.18,232.223.222.19,232.223.222.20,232.223.222.21,232.223.222.22,232.223.222.23,232.223.222.24,232.223.222.25,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.29,232.223.222.30,232.223.222.31,232.223.222.32,232.223.222.33,232.223.222.34,232.223.222.35,232.223.222.36,232.223.222.37,232.223.222.38,232.223.222.39,232.223.222.40,232.223.222.41,232.223.222.42,232.223.222.43,232.223.222.44,232.223.222.45,232.223.222.46,232.223.222.47,232.223.222.48,232.223.222.49,232.223.222.50,232.223.222.51,232.223.222.52,232.223.222.53,232.223.222.54,232.223.222.55,232.223.222.56,232.223.222.57,232.223.222.58,232.223.222.59,232.223.222.60,232.223.222.61,232.223.222.62,232.223.222.63,232.223.222.64,232.223.222.65,232.223.222.66,232.223.222.67,232.223.222.68,232.223.222.69,232.223.222.70,232.223.222.71,232.223.222.72,232.223.223.1,232.223.223.22\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.dub.ie.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "71a7864d-7a23-4d04-b453-6d91703428fa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae1 537", + "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, + "duration": 0.546573485, + "executed": 1692789498, + "history": [ + { + "status": 0, + "executed": 1692783493 + }, + { + "status": 0, + "executed": 1692783793 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784994 + }, + { + "status": 0, + "executed": 1692785294 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787096 + }, + { + "status": 0, + "executed": 1692787397 + }, + { + "status": 0, + "executed": 1692787697 + }, + { + "status": 0, + "executed": 1692787998 + }, + { + "status": 0, + "executed": 1692788298 + }, + { + "status": 0, + "executed": 1692788598 + }, + { + "status": 0, + "executed": 1692788898 + }, + { + "status": 0, + "executed": 1692789199 + }, + { + "status": 0, + "executed": 1692789498 + } + ], + "issued": 1692789498, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae1 ingressOctets=864498486472736,egressOctets=1856344486730136,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789498, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b1ac8bcf-320b-4d71-b7b4-b8b4c8fe648c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789499 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae1.0 545", + "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, + "duration": 0.596341207, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae1.0 ingressOctets=864565118021051,egressOctets=1856360617854087,ingressErrors=0,egressErrors=0,ingressOctetsv6=13204909699127,egressOctetsv6=5081140879260,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c698079a-fa86-46e0-b122-60ed0d54ab03", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10 550", + "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, + "duration": 0.557216577, + "executed": 1692789723, + "history": [ + { + "status": 0, + "executed": 1692783719 + }, + { + "status": 0, + "executed": 1692784019 + }, + { + "status": 0, + "executed": 1692784319 + }, + { + "status": 0, + "executed": 1692784620 + }, + { + "status": 0, + "executed": 1692784920 + }, + { + "status": 0, + "executed": 1692785220 + }, + { + "status": 0, + "executed": 1692785520 + }, + { + "status": 0, + "executed": 1692785820 + }, + { + "status": 0, + "executed": 1692786120 + }, + { + "status": 0, + "executed": 1692786421 + }, + { + "status": 0, + "executed": 1692786721 + }, + { + "status": 0, + "executed": 1692787021 + }, + { + "status": 0, + "executed": 1692787322 + }, + { + "status": 0, + "executed": 1692787622 + }, + { + "status": 0, + "executed": 1692787922 + }, + { + "status": 0, + "executed": 1692788222 + }, + { + "status": 0, + "executed": 1692788522 + }, + { + "status": 0, + "executed": 1692788823 + }, + { + "status": 0, + "executed": 1692789123 + }, + { + "status": 0, + "executed": 1692789423 + }, + { + "status": 0, + "executed": 1692789723 + } + ], + "issued": 1692789723, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae10 ingressOctets=6421395696221320,egressOctets=7592295756983393,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789723, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e7fd2373-69d9-46fd-a318-97cd764a0b8f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789724 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.12 615", + "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, + "duration": 0.683839629, + "executed": 1692789548, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786244 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789548 + } + ], + "issued": 1692789548, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae10.12 ingressOctets=167415942618370,egressOctets=1610475635433780,ingressErrors=0,egressErrors=0,ingressOctetsv6=15584908151266,egressOctetsv6=29062612130704,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789548, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae10.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c31b37c1-a8eb-4bac-94c2-61b6888f124d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.1213 711", + "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, + "duration": 0.531865989, + "executed": 1692789566, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785363 + }, + { + "status": 0, + "executed": 1692785663 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786864 + }, + { + "status": 0, + "executed": 1692787164 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787765 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788666 + }, + { + "status": 0, + "executed": 1692788966 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789566 + } + ], + "issued": 1692789566, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae10.1213 ingressOctets=3782423975,egressOctets=3592279251,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789566, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae10.1213", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9c447ef3-7578-47fa-adf1-948e0d93dade", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.2281 695", + "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, + "duration": 0.608416748, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae10.2281 ingressOctets=4925277587100337,egressOctets=33813073299923,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae10.2281", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc3a7444-eb24-467f-9032-cf3936bd45f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.2282 741", + "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, + "duration": 0.550503217, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae10.2282 ingressOctets=846900319097,egressOctets=518999175233,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae10.2282", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "10149975-99ae-4183-8328-8be32187ae8e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789612 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.30 614", + "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, + "duration": 0.552344635, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783568 + }, + { + "status": 0, + "executed": 1692783868 + }, + { + "status": 0, + "executed": 1692784168 + }, + { + "status": 0, + "executed": 1692784468 + }, + { + "status": 0, + "executed": 1692784768 + }, + { + "status": 0, + "executed": 1692785068 + }, + { + "status": 0, + "executed": 1692785368 + }, + { + "status": 0, + "executed": 1692785668 + }, + { + "status": 0, + "executed": 1692785969 + }, + { + "status": 0, + "executed": 1692786269 + }, + { + "status": 0, + "executed": 1692786569 + }, + { + "status": 0, + "executed": 1692786869 + }, + { + "status": 0, + "executed": 1692787169 + }, + { + "status": 0, + "executed": 1692787470 + }, + { + "status": 0, + "executed": 1692787770 + }, + { + "status": 0, + "executed": 1692788071 + }, + { + "status": 0, + "executed": 1692788371 + }, + { + "status": 0, + "executed": 1692788671 + }, + { + "status": 0, + "executed": 1692788971 + }, + { + "status": 0, + "executed": 1692789272 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae10.30 ingressOctets=102390002,egressOctets=813950900,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae10.30", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "019beb39-274c-44ed-9fc1-f629c3465f48", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.315 707", + "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, + "duration": 0.544444425, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784133 + }, + { + "status": 0, + "executed": 1692784433 + }, + { + "status": 0, + "executed": 1692784733 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae10.315 ingressOctets=2086507396014,egressOctets=12367591523715,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae10.315", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f5f7c59d-2f2c-4382-86b3-3c2a638c0243", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789536 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae10.333 585", + "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, + "duration": 0.650096134, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae10.333 ingressOctets=1325754036634082,egressOctets=5935045212858681,ingressErrors=0,egressErrors=0,ingressOctetsv6=129547841308131,egressOctetsv6=71887184634441,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae10.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bb225239-d2ec-4c81-9412-22c13aa8684d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae11 553", + "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, + "duration": 0.5308168, + "executed": 1692789598, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786595 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789598 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae11 ingressOctets=585695648503962,egressOctets=28740386462359,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789598, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3958ef4a-db6e-43a5-acf9-c344fae2cc11", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae11.2718 697", + "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, + "duration": 0.594982571, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae11.2718 ingressOctets=585692229912326,egressOctets=28740896024261,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae11.2718", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8775ee76-467c-49be-b6c2-56a7dd940a7c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789612 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae14 556", + "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, + "duration": 0.846433856, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae14 ingressOctets=4327934238133264,egressOctets=675219551270264,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae14", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eeef5269-36e6-494c-922b-3fc4b4977684", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae14.0 702", + "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, + "duration": 0.582846801, + "executed": 1692789634, + "history": [ + { + "status": 0, + "executed": 1692783630 + }, + { + "status": 0, + "executed": 1692783930 + }, + { + "status": 0, + "executed": 1692784230 + }, + { + "status": 0, + "executed": 1692784530 + }, + { + "status": 0, + "executed": 1692784831 + }, + { + "status": 0, + "executed": 1692785131 + }, + { + "status": 0, + "executed": 1692785431 + }, + { + "status": 0, + "executed": 1692785731 + }, + { + "status": 0, + "executed": 1692786032 + }, + { + "status": 0, + "executed": 1692786332 + }, + { + "status": 0, + "executed": 1692786631 + }, + { + "status": 0, + "executed": 1692786931 + }, + { + "status": 0, + "executed": 1692787232 + }, + { + "status": 0, + "executed": 1692787532 + }, + { + "status": 0, + "executed": 1692787833 + }, + { + "status": 0, + "executed": 1692788133 + }, + { + "status": 0, + "executed": 1692788433 + }, + { + "status": 0, + "executed": 1692788733 + }, + { + "status": 0, + "executed": 1692789033 + }, + { + "status": 0, + "executed": 1692789334 + }, + { + "status": 0, + "executed": 1692789634 + } + ], + "issued": 1692789634, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae14.0 ingressOctets=4327950650920592,egressOctets=675215446765456,ingressErrors=0,egressErrors=0,ingressOctetsv6=70803621854839,egressOctetsv6=104971827264461,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789634, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae14.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "11671523-6f94-4c0b-acd6-e99069d3ce35", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789634 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae4 540", + "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, + "duration": 0.546636645, + "executed": 1692789625, + "history": [ + { + "status": 0, + "executed": 1692783621 + }, + { + "status": 0, + "executed": 1692783921 + }, + { + "status": 0, + "executed": 1692784221 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785422 + }, + { + "status": 0, + "executed": 1692785722 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786323 + }, + { + "status": 0, + "executed": 1692786623 + }, + { + "status": 0, + "executed": 1692786923 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787524 + }, + { + "status": 0, + "executed": 1692787824 + }, + { + "status": 0, + "executed": 1692788124 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789025 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789625 + } + ], + "issued": 1692789625, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae4 ingressOctets=7187241161876235,egressOctets=9251956979389619,ingressErrors=2488,egressErrors=11,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789625, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "12959d93-8581-4f69-b6b1-329c2ad169e4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ae4.0 740", + "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, + "duration": 0.605921605, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789016 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789616, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ae4.0 ingressOctets=7187237522336533,egressOctets=9251953931387769,ingressErrors=0,egressErrors=0,ingressOctetsv6=17202892422042,egressOctetsv6=10694341918899,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ae4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "388cc12c-1b27-4e9f-a99b-298466e4ff48", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net dsc.0 544", + "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, + "duration": 0.549256281, + "executed": 1692789613, + "history": [ + { + "status": 0, + "executed": 1692783609 + }, + { + "status": 0, + "executed": 1692783909 + }, + { + "status": 0, + "executed": 1692784209 + }, + { + "status": 0, + "executed": 1692784509 + }, + { + "status": 0, + "executed": 1692784810 + }, + { + "status": 0, + "executed": 1692785110 + }, + { + "status": 0, + "executed": 1692785410 + }, + { + "status": 0, + "executed": 1692785710 + }, + { + "status": 0, + "executed": 1692786011 + }, + { + "status": 0, + "executed": 1692786311 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786911 + }, + { + "status": 0, + "executed": 1692787211 + }, + { + "status": 0, + "executed": 1692787511 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788112 + }, + { + "status": 0, + "executed": 1692788412 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789313 + }, + { + "status": 0, + "executed": 1692789613 + } + ], + "issued": 1692789613, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=dsc.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789613, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-dsc.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d99572b4-4600-4ef5-ab75-7b20bd727287", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-2/0/0 676", + "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, + "duration": 0.515883441, + "executed": 1692789636, + "history": [ + { + "status": 0, + "executed": 1692783632 + }, + { + "status": 0, + "executed": 1692783932 + }, + { + "status": 0, + "executed": 1692784232 + }, + { + "status": 0, + "executed": 1692784532 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785433 + }, + { + "status": 0, + "executed": 1692785733 + }, + { + "status": 0, + "executed": 1692786034 + }, + { + "status": 0, + "executed": 1692786334 + }, + { + "status": 0, + "executed": 1692786633 + }, + { + "status": 0, + "executed": 1692786933 + }, + { + "status": 0, + "executed": 1692787234 + }, + { + "status": 0, + "executed": 1692787534 + }, + { + "status": 0, + "executed": 1692787835 + }, + { + "status": 0, + "executed": 1692788135 + }, + { + "status": 0, + "executed": 1692788435 + }, + { + "status": 0, + "executed": 1692788735 + }, + { + "status": 0, + "executed": 1692789035 + }, + { + "status": 0, + "executed": 1692789336 + }, + { + "status": 0, + "executed": 1692789636 + } + ], + "issued": 1692789636, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=et-2/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789636, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-et-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "79ce577a-6f7b-4c0f-ac7e-6a589df3b041", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789636 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-3/0/0 677", + "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, + "duration": 0.574813519, + "executed": 1692789630, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784827 + }, + { + "status": 0, + "executed": 1692785127 + }, + { + "status": 0, + "executed": 1692785427 + }, + { + "status": 0, + "executed": 1692785727 + }, + { + "status": 0, + "executed": 1692786028 + }, + { + "status": 0, + "executed": 1692786328 + }, + { + "status": 0, + "executed": 1692786627 + }, + { + "status": 0, + "executed": 1692786928 + }, + { + "status": 0, + "executed": 1692787228 + }, + { + "status": 0, + "executed": 1692787529 + }, + { + "status": 0, + "executed": 1692787829 + }, + { + "status": 0, + "executed": 1692788129 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789030 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789630 + } + ], + "issued": 1692789630, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=et-3/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789630, + "occurrences": 20142, + "occurrences_watermark": 20142, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-et-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5ad0cf02-8db9-450e-b6f6-454020eca293", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-4/0/2 940", + "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, + "duration": 0.599747228, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=et-4/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-et-4-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e3414807-0b2b-4dd2-9a12-c1b42eed7e07", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-4/0/5 941", + "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, + "duration": 0.586696169, + "executed": 1692789596, + "history": [ + { + "status": 0, + "executed": 1692783592 + }, + { + "status": 0, + "executed": 1692783892 + }, + { + "status": 0, + "executed": 1692784192 + }, + { + "status": 0, + "executed": 1692784492 + }, + { + "status": 0, + "executed": 1692784792 + }, + { + "status": 0, + "executed": 1692785092 + }, + { + "status": 0, + "executed": 1692785392 + }, + { + "status": 0, + "executed": 1692785692 + }, + { + "status": 0, + "executed": 1692785993 + }, + { + "status": 0, + "executed": 1692786293 + }, + { + "status": 0, + "executed": 1692786593 + }, + { + "status": 0, + "executed": 1692786893 + }, + { + "status": 0, + "executed": 1692787194 + }, + { + "status": 0, + "executed": 1692787494 + }, + { + "status": 0, + "executed": 1692787794 + }, + { + "status": 0, + "executed": 1692788095 + }, + { + "status": 0, + "executed": 1692788395 + }, + { + "status": 0, + "executed": 1692788695 + }, + { + "status": 0, + "executed": 1692788995 + }, + { + "status": 0, + "executed": 1692789296 + }, + { + "status": 0, + "executed": 1692789596 + } + ], + "issued": 1692789596, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=et-4/0/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789596, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-et-4-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2a26c90e-c2f9-4ddc-b060-e30064abeec3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789596 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-4/1/2 950", + "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, + "duration": 0.513001028, + "executed": 1692789668, + "history": [ + { + "status": 0, + "executed": 1692783665 + }, + { + "status": 0, + "executed": 1692783965 + }, + { + "status": 0, + "executed": 1692784265 + }, + { + "status": 0, + "executed": 1692784565 + }, + { + "status": 0, + "executed": 1692784865 + }, + { + "status": 0, + "executed": 1692785165 + }, + { + "status": 0, + "executed": 1692785465 + }, + { + "status": 0, + "executed": 1692785766 + }, + { + "status": 0, + "executed": 1692786066 + }, + { + "status": 0, + "executed": 1692786366 + }, + { + "status": 0, + "executed": 1692786666 + }, + { + "status": 0, + "executed": 1692786966 + }, + { + "status": 0, + "executed": 1692787267 + }, + { + "status": 0, + "executed": 1692787567 + }, + { + "status": 0, + "executed": 1692787867 + }, + { + "status": 0, + "executed": 1692788167 + }, + { + "status": 0, + "executed": 1692788468 + }, + { + "status": 0, + "executed": 1692788768 + }, + { + "status": 0, + "executed": 1692789068 + }, + { + "status": 0, + "executed": 1692789369 + }, + { + "status": 0, + "executed": 1692789668 + } + ], + "issued": 1692789668, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=et-4/1/2 ingressOctets=6421392162233920,egressOctets=7592266671468209,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789668, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-et-4-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2d6eadd9-e92d-4c8e-bf82-df3ee26a838e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789669 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-4/1/5 951", + "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, + "duration": 0.610938387, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788167 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=et-4/1/5 ingressOctets=864550784844432,egressOctets=1856356578499757,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-et-4-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "baeed5f4-d442-4ba2-8bc5-f0f8d6f35326", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-5/0/2 938", + "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, + "duration": 0.552000865, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783568 + }, + { + "status": 0, + "executed": 1692783868 + }, + { + "status": 0, + "executed": 1692784168 + }, + { + "status": 0, + "executed": 1692784468 + }, + { + "status": 0, + "executed": 1692784768 + }, + { + "status": 0, + "executed": 1692785068 + }, + { + "status": 0, + "executed": 1692785368 + }, + { + "status": 0, + "executed": 1692785668 + }, + { + "status": 0, + "executed": 1692785969 + }, + { + "status": 0, + "executed": 1692786269 + }, + { + "status": 0, + "executed": 1692786569 + }, + { + "status": 0, + "executed": 1692786869 + }, + { + "status": 0, + "executed": 1692787169 + }, + { + "status": 0, + "executed": 1692787470 + }, + { + "status": 0, + "executed": 1692787770 + }, + { + "status": 0, + "executed": 1692788071 + }, + { + "status": 0, + "executed": 1692788371 + }, + { + "status": 0, + "executed": 1692788671 + }, + { + "status": 0, + "executed": 1692788971 + }, + { + "status": 0, + "executed": 1692789272 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=et-5/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-et-5-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ffb7bacf-2000-4684-bdff-cfa86a01beef", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-5/0/5 939", + "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, + "duration": 0.590570471, + "executed": 1692789641, + "history": [ + { + "status": 0, + "executed": 1692783637 + }, + { + "status": 0, + "executed": 1692783937 + }, + { + "status": 0, + "executed": 1692784237 + }, + { + "status": 0, + "executed": 1692784537 + }, + { + "status": 0, + "executed": 1692784837 + }, + { + "status": 0, + "executed": 1692785137 + }, + { + "status": 0, + "executed": 1692785438 + }, + { + "status": 0, + "executed": 1692785738 + }, + { + "status": 0, + "executed": 1692786039 + }, + { + "status": 0, + "executed": 1692786339 + }, + { + "status": 0, + "executed": 1692786638 + }, + { + "status": 0, + "executed": 1692786939 + }, + { + "status": 0, + "executed": 1692787239 + }, + { + "status": 0, + "executed": 1692787539 + }, + { + "status": 0, + "executed": 1692787840 + }, + { + "status": 0, + "executed": 1692788140 + }, + { + "status": 0, + "executed": 1692788440 + }, + { + "status": 0, + "executed": 1692788742 + }, + { + "status": 0, + "executed": 1692789041 + }, + { + "status": 0, + "executed": 1692789341 + }, + { + "status": 0, + "executed": 1692789641 + } + ], + "issued": 1692789641, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=et-5/0/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789641, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-et-5-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "578eb639-403e-4036-a8e8-e55daf670eb6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789641 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-5/1/2 946", + "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, + "duration": 0.511548957, + "executed": 1692789678, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786675 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789678 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=et-5/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789678, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-et-5-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9d63c39d-121f-4c5c-9fdb-e575507960cb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789678 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net et-5/1/5 947", + "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, + "duration": 0.542663375, + "executed": 1692789647, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784542 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785743 + }, + { + "status": 0, + "executed": 1692786045 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786644 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787545 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789647 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=et-5/1/5 ingressOctets=7187247033842827,egressOctets=9251963834818422,ingressErrors=2488,egressErrors=11,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789647, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-et-5-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "db248c79-f370-4765-bb16-b487a6c24f61", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0 593", + "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, + "duration": 0.543925358, + "executed": 1692789652, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784548 + }, + { + "status": 0, + "executed": 1692784848 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785449 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786350 + }, + { + "status": 0, + "executed": 1692786649 + }, + { + "status": 0, + "executed": 1692786950 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787851 + }, + { + "status": 0, + "executed": 1692788151 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789052 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789652 + } + ], + "issued": 1692789652, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/0 ingressOctets=4813015807,egressOctets=3419684664,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789652, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2efe13e9-1f62-44b0-98dd-2b0276fb8900", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0.111 626", + "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, + "duration": 0.520772205, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783639 + }, + { + "status": 0, + "executed": 1692783939 + }, + { + "status": 0, + "executed": 1692784239 + }, + { + "status": 0, + "executed": 1692784539 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785440 + }, + { + "status": 0, + "executed": 1692785740 + }, + { + "status": 0, + "executed": 1692786041 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787842 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/0.111 ingressOctets=780437768,egressOctets=10006224,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-0.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2ebdcbd8-bf14-4e36-9925-fc1d87ca73fb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0.120 627", + "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, + "duration": 0.5434583, + "executed": 1692789677, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786675 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788176 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789077 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789677 + } + ], + "issued": 1692789677, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/0.120 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789677, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-0.120", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "68b29875-2f57-4081-b303-59752b951c09", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789678 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0.210 629", + "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, + "duration": 0.558333591, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783850 + }, + { + "status": 0, + "executed": 1692784150 + }, + { + "status": 0, + "executed": 1692784450 + }, + { + "status": 0, + "executed": 1692784750 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786252 + }, + { + "status": 0, + "executed": 1692786551 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787452 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788053 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/0.210 ingressOctets=780434708,egressOctets=2242442786,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-0.210", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1db0389c-e253-4e60-b65e-bee27ef55510", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0.23 698", + "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, + "duration": 0.578448842, + "executed": 1692789540, + "history": [ + { + "status": 0, + "executed": 1692783537 + }, + { + "status": 0, + "executed": 1692783837 + }, + { + "status": 0, + "executed": 1692784137 + }, + { + "status": 0, + "executed": 1692784437 + }, + { + "status": 0, + "executed": 1692784737 + }, + { + "status": 0, + "executed": 1692785038 + }, + { + "status": 0, + "executed": 1692785338 + }, + { + "status": 0, + "executed": 1692785638 + }, + { + "status": 0, + "executed": 1692785938 + }, + { + "status": 0, + "executed": 1692786239 + }, + { + "status": 0, + "executed": 1692786538 + }, + { + "status": 0, + "executed": 1692786839 + }, + { + "status": 0, + "executed": 1692787139 + }, + { + "status": 0, + "executed": 1692787439 + }, + { + "status": 0, + "executed": 1692787740 + }, + { + "status": 0, + "executed": 1692788040 + }, + { + "status": 0, + "executed": 1692788340 + }, + { + "status": 0, + "executed": 1692788641 + }, + { + "status": 0, + "executed": 1692788941 + }, + { + "status": 0, + "executed": 1692789241 + }, + { + "status": 0, + "executed": 1692789540 + } + ], + "issued": 1692789540, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/0.23 ingressOctets=956098872,egressOctets=286710971,ingressErrors=0,egressErrors=0,ingressOctetsv6=76824,egressOctetsv6=22258,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789540, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-0.23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a5486d90-57dd-404d-b6c5-6a6a47d46b21", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789541 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/0.991 700", + "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, + "duration": 0.773532726, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/0.991 ingressOctets=2016537007,egressOctets=519259818,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 21839, + "occurrences_watermark": 21839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-0.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2eaab0c3-3ea4-422c-92d0-b1737edbb882", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/1 594", + "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, + "duration": 0.799059865, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783843 + }, + { + "status": 0, + "executed": 1692784143 + }, + { + "status": 0, + "executed": 1692784443 + }, + { + "status": 0, + "executed": 1692784743 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786244 + }, + { + "status": 0, + "executed": 1692786544 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787445 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788046 + }, + { + "status": 0, + "executed": 1692788346 + }, + { + "status": 0, + "executed": 1692788646 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "77d0e42f-826c-471c-884c-28f671b4d2c4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/3 596", + "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, + "duration": 0.54295723, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7771c67d-2a13-43ad-b18f-058e727ba9a5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/4 597", + "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, + "duration": 0.768590439, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783545 + }, + { + "status": 0, + "executed": 1692783845 + }, + { + "status": 0, + "executed": 1692784145 + }, + { + "status": 0, + "executed": 1692784445 + }, + { + "status": 0, + "executed": 1692784745 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787447 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788048 + }, + { + "status": 0, + "executed": 1692788348 + }, + { + "status": 0, + "executed": 1692788648 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "34cd694e-a444-401b-9788-2c4eaf441bd3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/5 598", + "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, + "duration": 0.722222046, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aaf5f9cb-be79-460f-bf86-e1f976d2cb64", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/6 599", + "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, + "duration": 0.580597761, + "executed": 1692789585, + "history": [ + { + "status": 0, + "executed": 1692783581 + }, + { + "status": 0, + "executed": 1692783881 + }, + { + "status": 0, + "executed": 1692784181 + }, + { + "status": 0, + "executed": 1692784481 + }, + { + "status": 0, + "executed": 1692784781 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785982 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786582 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787183 + }, + { + "status": 0, + "executed": 1692787483 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788084 + }, + { + "status": 0, + "executed": 1692788384 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789285 + }, + { + "status": 0, + "executed": 1692789585 + } + ], + "issued": 1692789585, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789585, + "occurrences": 34838, + "occurrences_watermark": 34838, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b72d0463-4c90-404a-a6f8-ea91ce2f3fd5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/7 600", + "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, + "duration": 0.532389474, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785077 + }, + { + "status": 0, + "executed": 1692785377 + }, + { + "status": 0, + "executed": 1692785677 + }, + { + "status": 0, + "executed": 1692785978 + }, + { + "status": 0, + "executed": 1692786278 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786878 + }, + { + "status": 0, + "executed": 1692787178 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787779 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788680 + }, + { + "status": 0, + "executed": 1692788980 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "edc709d7-9a33-4a3f-ab33-b2b46523c1dd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789581 + }, + { + "check": { + "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, + "duration": 0.553672517, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d2bb8eb2-4ede-4623-a51b-7cbdaed4652c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/2/9 602", + "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, + "duration": 0.54944376, + "executed": 1692789575, + "history": [ + { + "status": 0, + "executed": 1692783572 + }, + { + "status": 0, + "executed": 1692783872 + }, + { + "status": 0, + "executed": 1692784172 + }, + { + "status": 0, + "executed": 1692784472 + }, + { + "status": 0, + "executed": 1692784772 + }, + { + "status": 0, + "executed": 1692785072 + }, + { + "status": 0, + "executed": 1692785372 + }, + { + "status": 0, + "executed": 1692785672 + }, + { + "status": 0, + "executed": 1692785973 + }, + { + "status": 0, + "executed": 1692786273 + }, + { + "status": 0, + "executed": 1692786573 + }, + { + "status": 0, + "executed": 1692786873 + }, + { + "status": 0, + "executed": 1692787173 + }, + { + "status": 0, + "executed": 1692787474 + }, + { + "status": 0, + "executed": 1692787774 + }, + { + "status": 0, + "executed": 1692788075 + }, + { + "status": 0, + "executed": 1692788375 + }, + { + "status": 0, + "executed": 1692788675 + }, + { + "status": 0, + "executed": 1692788975 + }, + { + "status": 0, + "executed": 1692789276 + }, + { + "status": 0, + "executed": 1692789575 + } + ], + "issued": 1692789575, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789575, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e888a4e-be65-410b-8f43-315f6d44e748", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789576 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/0 603", + "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, + "duration": 0.547740306, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783549 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785050 + }, + { + "status": 0, + "executed": 1692785350 + }, + { + "status": 0, + "executed": 1692785650 + }, + { + "status": 0, + "executed": 1692785950 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786550 + }, + { + "status": 0, + "executed": 1692786851 + }, + { + "status": 0, + "executed": 1692787151 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787752 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f8a502a-83f6-4b7d-81a3-b76f536a8df7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/1 604", + "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, + "duration": 0.580204002, + "executed": 1692789583, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789583 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789583, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "840ddbfd-5509-480f-8c78-717acf104a05", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/2 605", + "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, + "duration": 0.65681707, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e6b04ecc-1359-400f-a306-04ab39d21080", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/3 606", + "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, + "duration": 0.564406321, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e9d0644-e72a-4cfb-b762-cdeb2e3240be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/4 607", + "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, + "duration": 0.57726351, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785068 + }, + { + "status": 0, + "executed": 1692785368 + }, + { + "status": 0, + "executed": 1692785668 + }, + { + "status": 0, + "executed": 1692785969 + }, + { + "status": 0, + "executed": 1692786269 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786869 + }, + { + "status": 0, + "executed": 1692787169 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787770 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788671 + }, + { + "status": 0, + "executed": 1692788971 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "057fb30e-37f0-455a-9e5f-b11f793532d3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/5 608", + "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, + "duration": 0.552587431, + "executed": 1692789577, + "history": [ + { + "status": 0, + "executed": 1692783573 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789577 + } + ], + "issued": 1692789577, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789577, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "69bedf38-4086-491f-8b1b-58e3b085b391", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789578 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/6 609", + "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, + "duration": 0.5395339, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785991 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eb3d1c99-2299-4f85-8043-2ecddcae4d21", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/7 610", + "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, + "duration": 0.517207124, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "065dd8eb-b649-4cc6-8f03-49ed02a0728c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/8 611", + "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, + "duration": 0.642707956, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785956 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789559, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2345612b-80f6-48a1-b043-ac9e53c868a2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net ge-1/3/9 612", + "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, + "duration": 0.570866409, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=ge-1/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-ge-1-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4e736552-f202-4156-bcf2-eb7b6a949f26", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net lt-2/0/0 687", + "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, + "duration": 0.603633459, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783549 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785050 + }, + { + "status": 0, + "executed": 1692785350 + }, + { + "status": 0, + "executed": 1692785650 + }, + { + "status": 0, + "executed": 1692785950 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786550 + }, + { + "status": 0, + "executed": 1692786851 + }, + { + "status": 0, + "executed": 1692787151 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787752 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=lt-2/0/0 ingressOctets=1160201139886,egressOctets=1164505466700,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-lt-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dfb19098-58e9-40b9-bb49-df031bae99bf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net lt-2/0/0.16 690", + "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, + "duration": 0.58369086, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785982 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787182 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789584, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=lt-2/0/0.16 ingressOctets=289796921,egressOctets=1164136062931,ingressErrors=0,egressErrors=0,ingressOctetsv6=494840,egressOctetsv6=82590097,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-lt-2-0-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b07f742f-f12a-46f9-8a81-432ba7b8e6e6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net lt-2/0/0.61 691", + "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, + "duration": 0.580246383, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785077 + }, + { + "status": 0, + "executed": 1692785377 + }, + { + "status": 0, + "executed": 1692785677 + }, + { + "status": 0, + "executed": 1692785978 + }, + { + "status": 0, + "executed": 1692786278 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786878 + }, + { + "status": 0, + "executed": 1692787178 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787779 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788680 + }, + { + "status": 0, + "executed": 1692788980 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=lt-2/0/0.61 ingressOctets=1159913117314,egressOctets=290701800,ingressErrors=0,egressErrors=0,ingressOctetsv6=43831576040,egressOctetsv6=1354972,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-lt-2-0-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "27e98318-7864-4f7c-9cae-029b4791fd6e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-0/0/0 526", + "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, + "duration": 0.554131641, + "executed": 1692789566, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785363 + }, + { + "status": 0, + "executed": 1692785663 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786864 + }, + { + "status": 0, + "executed": 1692787164 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787765 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788666 + }, + { + "status": 0, + "executed": 1692788966 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789566 + } + ], + "issued": 1692789566, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=xe-0/0/0 ingressOctets=2165843990671687,egressOctets=338668793414485,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789566, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c7804b6-5b83-4b7f-b39f-e42290fd9738", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-0/0/1 527", + "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, + "duration": 0.736168381, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=xe-0/0/1 ingressOctets=2162085843280065,egressOctets=336545070394080,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "510c8835-bb7a-452c-88df-f2115913ee33", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-0/1/0 528", + "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, + "duration": 0.582986473, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=xe-0/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-xe-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fce98280-2350-4dfb-a4f9-62f39ffe8f97", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-0/1/1 529", + "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, + "duration": 0.664757964, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=xe-0/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "49e2c3ff-af45-4134-b71f-0668f2cc43ab", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-1/0/0 530", + "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, + "duration": 0.572427932, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785991 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787492 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788093 + }, + { + "status": 0, + "executed": 1692788393 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789294 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789594, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=xe-1/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b6764431-ffbf-4dad-8269-14a54a600922", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-1/0/1 531", + "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, + "duration": 0.559838698, + "executed": 1692789569, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789569 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=xe-1/0/1 ingressOctets=292664232999306,egressOctets=15201164777952,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789569, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "081757d2-df8f-474d-9a07-ff8a3fad60eb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789570 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub.ie.geant.net xe-1/1/0 532", + "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, + "duration": 0.773242281, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub.ie.geant.net,interface_name=xe-1/1/0 ingressOctets=293028391023670,egressOctets=13531388980970,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub.ie.geant.net-xe-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f7005b1c-a903-4b39-8e1e-2630d1481b2a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.dub2.ie.geant.net", + "handlers": [], + "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, + "duration": 5.965687637, + "executed": 1692789474, + "history": [ + { + "status": 1, + "executed": 1692783469 + }, + { + "status": 1, + "executed": 1692783769 + }, + { + "status": 1, + "executed": 1692784069 + }, + { + "status": 1, + "executed": 1692784370 + }, + { + "status": 1, + "executed": 1692784670 + }, + { + "status": 1, + "executed": 1692784970 + }, + { + "status": 1, + "executed": 1692785270 + }, + { + "status": 1, + "executed": 1692785571 + }, + { + "status": 1, + "executed": 1692785871 + }, + { + "status": 1, + "executed": 1692786171 + }, + { + "status": 1, + "executed": 1692786472 + }, + { + "status": 1, + "executed": 1692786772 + }, + { + "status": 1, + "executed": 1692787072 + }, + { + "status": 1, + "executed": 1692787372 + }, + { + "status": 1, + "executed": 1692787673 + }, + { + "status": 1, + "executed": 1692787973 + }, + { + "status": 1, + "executed": 1692788273 + }, + { + "status": 1, + "executed": 1692788573 + }, + { + "status": 1, + "executed": 1692788874 + }, + { + "status": 1, + "executed": 1692789174 + }, + { + "status": 1, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "2023-08-23 11:17:55,246 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:55,246 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:55,246 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:55,246 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.dub2.ie.geant.net\n2023-08-23 11:17:55,249 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:55,266 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.dub2.ie.geant.net HTTP/1.1\" 200 14706\nmulticast,hostname=mx1.dub2.ie.geant.net,subscription=232.223.222.1 octets=410877088696\n2023-08-23 11:18:00,748 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.2,232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.8,232.223.222.9,232.223.222.10,232.223.222.11,232.223.222.12,232.223.222.13,232.223.222.14,232.223.222.15,232.223.222.16,232.223.222.17,232.223.222.18,232.223.222.19,232.223.222.20,232.223.222.21,232.223.222.22,232.223.222.23,232.223.222.24,232.223.222.25,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.29,232.223.222.30,232.223.222.31,232.223.222.32,232.223.222.33,232.223.222.34,232.223.222.35,232.223.222.36,232.223.222.37,232.223.222.38,232.223.222.39,232.223.222.40,232.223.222.41,232.223.222.42,232.223.222.43,232.223.222.44,232.223.222.45,232.223.222.46,232.223.222.47,232.223.222.48,232.223.222.49,232.223.222.50,232.223.222.51,232.223.222.52,232.223.222.53,232.223.222.54,232.223.222.55,232.223.222.56,232.223.222.57,232.223.222.58,232.223.222.59,232.223.222.60,232.223.222.61,232.223.222.62,232.223.222.63,232.223.222.64,232.223.222.65,232.223.222.66,232.223.222.67,232.223.222.68,232.223.222.69,232.223.222.70,232.223.222.71,232.223.222.72,232.223.223.1,232.223.223.22\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c8fbe8c3-6660-410d-81bb-ec13170b5bcc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae1 581", + "handlers": [], + "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, + "duration": 0.543396736, + "executed": 1692789595, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784791 + }, + { + "status": 0, + "executed": 1692785091 + }, + { + "status": 0, + "executed": 1692785391 + }, + { + "status": 0, + "executed": 1692785691 + }, + { + "status": 0, + "executed": 1692785992 + }, + { + "status": 0, + "executed": 1692786292 + }, + { + "status": 0, + "executed": 1692786592 + }, + { + "status": 0, + "executed": 1692786892 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787793 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788694 + }, + { + "status": 0, + "executed": 1692788994 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789595 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae1 ingressOctets=1508435610715969,egressOctets=676309219866386,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789595, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "687eba22-6798-4335-b68b-ca78f6871a49", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789595 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae1.0 711", + "handlers": [], + "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, + "duration": 0.53632073, + "executed": 1692789572, + "history": [ + { + "status": 0, + "executed": 1692783568 + }, + { + "status": 0, + "executed": 1692783868 + }, + { + "status": 0, + "executed": 1692784168 + }, + { + "status": 0, + "executed": 1692784468 + }, + { + "status": 0, + "executed": 1692784768 + }, + { + "status": 0, + "executed": 1692785069 + }, + { + "status": 0, + "executed": 1692785369 + }, + { + "status": 0, + "executed": 1692785669 + }, + { + "status": 0, + "executed": 1692785970 + }, + { + "status": 0, + "executed": 1692786270 + }, + { + "status": 0, + "executed": 1692786569 + }, + { + "status": 0, + "executed": 1692786870 + }, + { + "status": 0, + "executed": 1692787170 + }, + { + "status": 0, + "executed": 1692787470 + }, + { + "status": 0, + "executed": 1692787771 + }, + { + "status": 0, + "executed": 1692788071 + }, + { + "status": 0, + "executed": 1692788371 + }, + { + "status": 0, + "executed": 1692788672 + }, + { + "status": 0, + "executed": 1692788972 + }, + { + "status": 0, + "executed": 1692789272 + }, + { + "status": 0, + "executed": 1692789572 + } + ], + "issued": 1692789572, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae1.0 ingressOctets=1508433763093293,egressOctets=676301884182523,ingressErrors=0,egressErrors=0,ingressOctetsv6=4393486718675,egressOctetsv6=13164397154333,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789572, + "occurrences": 18355, + "occurrences_watermark": 18355, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "32df0fb2-a057-4100-8fe7-277bc779ad30", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10 596", + "handlers": [], + "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, + "duration": 0.571970468, + "executed": 1692789589, + "history": [ + { + "status": 0, + "executed": 1692783586 + }, + { + "status": 0, + "executed": 1692783886 + }, + { + "status": 0, + "executed": 1692784186 + }, + { + "status": 0, + "executed": 1692784486 + }, + { + "status": 0, + "executed": 1692784786 + }, + { + "status": 0, + "executed": 1692785086 + }, + { + "status": 0, + "executed": 1692785386 + }, + { + "status": 0, + "executed": 1692785686 + }, + { + "status": 0, + "executed": 1692785987 + }, + { + "status": 0, + "executed": 1692786287 + }, + { + "status": 0, + "executed": 1692786587 + }, + { + "status": 0, + "executed": 1692786887 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787488 + }, + { + "status": 0, + "executed": 1692787788 + }, + { + "status": 0, + "executed": 1692788089 + }, + { + "status": 0, + "executed": 1692788389 + }, + { + "status": 0, + "executed": 1692788689 + }, + { + "status": 0, + "executed": 1692788989 + }, + { + "status": 0, + "executed": 1692789290 + }, + { + "status": 0, + "executed": 1692789589 + } + ], + "issued": 1692789589, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10 ingressOctets=7245694269432,egressOctets=10386354144934,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789589, + "occurrences": 18356, + "occurrences_watermark": 18356, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4e9a48f2-d716-4ed2-a4da-684d4bd9b3cf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789590 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.12 713", + "handlers": [], + "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, + "duration": 0.609795949, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.12 ingressOctets=36228089879,egressOctets=812352592430,ingressErrors=0,egressErrors=0,ingressOctetsv6=4872125886,egressOctetsv6=3412400037,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "73577485-a3e5-4ad7-813b-cb8c044742b1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.1214 790", + "handlers": [], + "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, + "duration": 0.531728819, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.1214 ingressOctets=2409261527,egressOctets=1926227005,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.1214", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8da04c51-999b-4bbe-89a0-c56390564fd6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.2500 833", + "handlers": [], + "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, + "duration": 0.533298274, + "executed": 1692789588, + "history": [ + { + "status": 0, + "executed": 1692783583 + }, + { + "status": 0, + "executed": 1692783883 + }, + { + "status": 0, + "executed": 1692784183 + }, + { + "status": 0, + "executed": 1692784483 + }, + { + "status": 0, + "executed": 1692784783 + }, + { + "status": 0, + "executed": 1692785084 + }, + { + "status": 0, + "executed": 1692785384 + }, + { + "status": 0, + "executed": 1692785684 + }, + { + "status": 0, + "executed": 1692785985 + }, + { + "status": 0, + "executed": 1692786285 + }, + { + "status": 0, + "executed": 1692786584 + }, + { + "status": 0, + "executed": 1692786885 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787486 + }, + { + "status": 0, + "executed": 1692787787 + }, + { + "status": 0, + "executed": 1692788087 + }, + { + "status": 0, + "executed": 1692788387 + }, + { + "status": 0, + "executed": 1692788688 + }, + { + "status": 0, + "executed": 1692788988 + }, + { + "status": 0, + "executed": 1692789288 + }, + { + "status": 0, + "executed": 1692789588 + } + ], + "issued": 1692789588, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.2500 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789588, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.2500", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "21bad5e9-bb5b-4486-b541-d2151b7203b0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789589 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.2553 864", + "handlers": [], + "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, + "duration": 0.556848319, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.2553 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.2553", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "db0d0f98-fa9d-48e9-9bd9-4ad330cd7c58", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.2586 862", + "handlers": [], + "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, + "duration": 0.716246098, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.2586 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.2586", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dad65dd6-41eb-4e63-bd09-484cdefc15a0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.2588 813", + "handlers": [], + "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, + "duration": 0.597148432, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.2588 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 18354, + "occurrences_watermark": 18354, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.2588", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ea43537-e124-4213-9d6e-14f6a0b02c23", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.2591 866", + "handlers": [], + "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, + "duration": 0.645643328, + "executed": 1692789595, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784792 + }, + { + "status": 0, + "executed": 1692785092 + }, + { + "status": 0, + "executed": 1692785392 + }, + { + "status": 0, + "executed": 1692785692 + }, + { + "status": 0, + "executed": 1692785993 + }, + { + "status": 0, + "executed": 1692786293 + }, + { + "status": 0, + "executed": 1692786592 + }, + { + "status": 0, + "executed": 1692786893 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787794 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788695 + }, + { + "status": 0, + "executed": 1692788995 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789595 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.2591 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789595, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.2591", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "611f1223-8755-4909-86f4-64d21f546ec7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789596 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.2669 838", + "handlers": [], + "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, + "duration": 0.519204003, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783623 + }, + { + "status": 0, + "executed": 1692783923 + }, + { + "status": 0, + "executed": 1692784223 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785424 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786025 + }, + { + "status": 0, + "executed": 1692786325 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788427 + }, + { + "status": 0, + "executed": 1692788727 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789328 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.2669 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.2669", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "af5a38f6-7aa8-433a-96da-885270a5e21c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.2704 828", + "handlers": [], + "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, + "duration": 0.573672264, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783623 + }, + { + "status": 0, + "executed": 1692783923 + }, + { + "status": 0, + "executed": 1692784223 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785424 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786025 + }, + { + "status": 0, + "executed": 1692786325 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788427 + }, + { + "status": 0, + "executed": 1692788727 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789328 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.2704 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.2704", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "49a317e6-f0f3-4b0f-ae93-26b6c3a1806d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.2715 818", + "handlers": [], + "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, + "duration": 0.616303552, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784519 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.2715 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.2715", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e4efd590-7f86-4475-b3ce-e395aeb70bc5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789623 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.2724 823", + "handlers": [], + "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, + "duration": 0.563909482, + "executed": 1692789614, + "history": [ + { + "status": 0, + "executed": 1692783610 + }, + { + "status": 0, + "executed": 1692783910 + }, + { + "status": 0, + "executed": 1692784210 + }, + { + "status": 0, + "executed": 1692784510 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786611 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787212 + }, + { + "status": 0, + "executed": 1692787512 + }, + { + "status": 0, + "executed": 1692787812 + }, + { + "status": 0, + "executed": 1692788113 + }, + { + "status": 0, + "executed": 1692788413 + }, + { + "status": 0, + "executed": 1692788713 + }, + { + "status": 0, + "executed": 1692789013 + }, + { + "status": 0, + "executed": 1692789314 + }, + { + "status": 0, + "executed": 1692789614 + } + ], + "issued": 1692789614, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.2724 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789614, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.2724", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "08ac7792-bbcd-496e-8ed6-a56319e5df24", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789614 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.2727 859", + "handlers": [], + "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, + "duration": 0.578560078, + "executed": 1692789540, + "history": [ + { + "status": 0, + "executed": 1692783537 + }, + { + "status": 0, + "executed": 1692783837 + }, + { + "status": 0, + "executed": 1692784137 + }, + { + "status": 0, + "executed": 1692784437 + }, + { + "status": 0, + "executed": 1692784737 + }, + { + "status": 0, + "executed": 1692785038 + }, + { + "status": 0, + "executed": 1692785338 + }, + { + "status": 0, + "executed": 1692785638 + }, + { + "status": 0, + "executed": 1692785938 + }, + { + "status": 0, + "executed": 1692786239 + }, + { + "status": 0, + "executed": 1692786538 + }, + { + "status": 0, + "executed": 1692786839 + }, + { + "status": 0, + "executed": 1692787139 + }, + { + "status": 0, + "executed": 1692787439 + }, + { + "status": 0, + "executed": 1692787740 + }, + { + "status": 0, + "executed": 1692788040 + }, + { + "status": 0, + "executed": 1692788340 + }, + { + "status": 0, + "executed": 1692788641 + }, + { + "status": 0, + "executed": 1692788941 + }, + { + "status": 0, + "executed": 1692789241 + }, + { + "status": 0, + "executed": 1692789540 + } + ], + "issued": 1692789540, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.2727 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789540, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.2727", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bac52224-0254-484a-a512-be905047dda2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789541 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.30 712", + "handlers": [], + "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, + "duration": 0.721955178, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.30 ingressOctets=85908803,egressOctets=126843197,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.30", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "19f2e3e0-f36b-402c-aae5-67eecf988544", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae10.333 658", + "handlers": [], + "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, + "duration": 0.572961137, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783563 + }, + { + "status": 0, + "executed": 1692783863 + }, + { + "status": 0, + "executed": 1692784163 + }, + { + "status": 0, + "executed": 1692784465 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785365 + }, + { + "status": 0, + "executed": 1692785665 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786266 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786866 + }, + { + "status": 0, + "executed": 1692787166 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787767 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788668 + }, + { + "status": 0, + "executed": 1692788968 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789568, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae10.333 ingressOctets=7204486542962,egressOctets=9571634525190,ingressErrors=0,egressErrors=0,ingressOctetsv6=42520174945,egressOctetsv6=105109908010,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae10.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b8bf6347-339e-45be-ad3c-67f31f3ecf7b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789569 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae5 585", + "handlers": [], + "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, + "duration": 0.551637397, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae5 ingressOctets=687158823920168,egressOctets=1507844258441230,ingressErrors=6,egressErrors=40,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "80b9ed42-df9c-411c-aeb8-5f87d85cbe0c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ae5.0 808", + "handlers": [], + "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, + "duration": 0.522215235, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783851 + }, + { + "status": 0, + "executed": 1692784151 + }, + { + "status": 0, + "executed": 1692784451 + }, + { + "status": 0, + "executed": 1692784751 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786252 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787453 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788054 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788654 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789554, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ae5.0 ingressOctets=687152654668739,egressOctets=1507844217777528,ingressErrors=0,egressErrors=0,ingressOctetsv6=2595542366971,egressOctetsv6=4421117431949,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ae5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "459c8e95-b808-4cb1-befa-769a6870c37d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net dsc.0 582", + "handlers": [], + "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, + "duration": 0.748572876, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783587 + }, + { + "status": 0, + "executed": 1692783887 + }, + { + "status": 0, + "executed": 1692784187 + }, + { + "status": 0, + "executed": 1692784487 + }, + { + "status": 0, + "executed": 1692784787 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785988 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787189 + }, + { + "status": 0, + "executed": 1692787489 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788090 + }, + { + "status": 0, + "executed": 1692788390 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789291 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789591, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=dsc.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-dsc.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c211b413-98b8-4457-b9c0-bef8f0bfd6b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net et-2/0/0 750", + "handlers": [], + "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, + "duration": 0.579647236, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=et-2/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-et-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d8f714a0-fb9b-4a59-ad79-4c9a886d0bd5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net et-3/0/0 751", + "handlers": [], + "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, + "duration": 0.759318486, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783587 + }, + { + "status": 0, + "executed": 1692783887 + }, + { + "status": 0, + "executed": 1692784187 + }, + { + "status": 0, + "executed": 1692784487 + }, + { + "status": 0, + "executed": 1692784787 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785988 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787189 + }, + { + "status": 0, + "executed": 1692787489 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788090 + }, + { + "status": 0, + "executed": 1692788390 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789291 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789591, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=et-3/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-et-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bb11dbee-86f6-4230-8144-bde691303caf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net et-4/0/2 857", + "handlers": [], + "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, + "duration": 0.529668116, + "executed": 1692789588, + "history": [ + { + "status": 0, + "executed": 1692783583 + }, + { + "status": 0, + "executed": 1692783883 + }, + { + "status": 0, + "executed": 1692784183 + }, + { + "status": 0, + "executed": 1692784483 + }, + { + "status": 0, + "executed": 1692784783 + }, + { + "status": 0, + "executed": 1692785083 + }, + { + "status": 0, + "executed": 1692785383 + }, + { + "status": 0, + "executed": 1692785683 + }, + { + "status": 0, + "executed": 1692785984 + }, + { + "status": 0, + "executed": 1692786284 + }, + { + "status": 0, + "executed": 1692786584 + }, + { + "status": 0, + "executed": 1692786884 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787486 + }, + { + "status": 0, + "executed": 1692787787 + }, + { + "status": 0, + "executed": 1692788087 + }, + { + "status": 0, + "executed": 1692788387 + }, + { + "status": 0, + "executed": 1692788688 + }, + { + "status": 0, + "executed": 1692788988 + }, + { + "status": 0, + "executed": 1692789288 + }, + { + "status": 0, + "executed": 1692789588 + } + ], + "issued": 1692789588, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=et-4/0/2 ingressOctets=1508435253325840,egressOctets=676307361969239,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789588, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-et-4-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4d4b4ead-b495-4bbd-a4bb-55bcea7fe550", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789589 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net et-4/0/5 858", + "handlers": [], + "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, + "duration": 0.702708568, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=et-4/0/5 ingressOctets=687165624523671,egressOctets=1507845854065093,ingressErrors=6,egressErrors=40,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-et-4-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "582efd9a-525a-40de-97b8-17cdc37935c2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net et-4/1/2 853", + "handlers": [], + "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, + "duration": 0.666727736, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783587 + }, + { + "status": 0, + "executed": 1692783887 + }, + { + "status": 0, + "executed": 1692784187 + }, + { + "status": 0, + "executed": 1692784487 + }, + { + "status": 0, + "executed": 1692784787 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785988 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787189 + }, + { + "status": 0, + "executed": 1692787489 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788090 + }, + { + "status": 0, + "executed": 1692788390 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789291 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789591, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=et-4/1/2 ingressOctets=7245694269432,egressOctets=10386354695294,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-et-4-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0eb29614-7170-43f4-a91b-9031f605a837", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net et-4/1/5 854", + "handlers": [], + "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, + "duration": 0.642130573, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=et-4/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-et-4-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2e70cc8f-62ca-4a18-8bfe-5335b8f1c07d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789601 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/0.0 719", + "handlers": [], + "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, + "duration": 0.540816419, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783595 + }, + { + "status": 0, + "executed": 1692783895 + }, + { + "status": 0, + "executed": 1692784195 + }, + { + "status": 0, + "executed": 1692784495 + }, + { + "status": 0, + "executed": 1692784796 + }, + { + "status": 0, + "executed": 1692785096 + }, + { + "status": 0, + "executed": 1692785396 + }, + { + "status": 0, + "executed": 1692785696 + }, + { + "status": 0, + "executed": 1692785997 + }, + { + "status": 0, + "executed": 1692786297 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786897 + }, + { + "status": 0, + "executed": 1692787197 + }, + { + "status": 0, + "executed": 1692787497 + }, + { + "status": 0, + "executed": 1692787798 + }, + { + "status": 0, + "executed": 1692788098 + }, + { + "status": 0, + "executed": 1692788398 + }, + { + "status": 0, + "executed": 1692788699 + }, + { + "status": 0, + "executed": 1692788999 + }, + { + "status": 0, + "executed": 1692789299 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789599, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/0.0 ingressOctets=4639789034,egressOctets=328416804,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3ef7b86b-2835-49af-b7b6-34c2e3bcea4f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789600 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/1 691", + "handlers": [], + "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, + "duration": 0.568866331, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7a83f65b-b20f-4e04-9ee3-4daf4290bdea", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/1.0 752", + "handlers": [], + "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, + "duration": 0.559901475, + "executed": 1692789595, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784792 + }, + { + "status": 0, + "executed": 1692785092 + }, + { + "status": 0, + "executed": 1692785392 + }, + { + "status": 0, + "executed": 1692785692 + }, + { + "status": 0, + "executed": 1692785993 + }, + { + "status": 0, + "executed": 1692786293 + }, + { + "status": 0, + "executed": 1692786592 + }, + { + "status": 0, + "executed": 1692786893 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787794 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788695 + }, + { + "status": 0, + "executed": 1692788995 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789595 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/1.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789595, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0dfbf9a1-74b9-425d-8187-85f01ad0de5a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789596 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/2 692", + "handlers": [], + "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, + "duration": 0.544904056, + "executed": 1692789598, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786595 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789598 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789598, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d4b615e7-d29c-4baf-a109-24d69c675236", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/3 693", + "handlers": [], + "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, + "duration": 0.583014805, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/3 ingressOctets=949614762,egressOctets=432800257,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 34846, + "occurrences_watermark": 34846, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c349b74f-0c8f-44be-b2f5-646f625cc607", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/3.23 768", + "handlers": [], + "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, + "duration": 0.559798394, + "executed": 1692789583, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789583 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/3.23 ingressOctets=715798850,egressOctets=158254241,ingressErrors=0,egressErrors=0,ingressOctetsv6=37472,egressOctetsv6=9784,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789583, + "occurrences": 18355, + "occurrences_watermark": 18355, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-3.23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8ea92060-7e25-4951-922f-4beee0b89847", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/4 694", + "handlers": [], + "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, + "duration": 0.597721531, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "624608b3-5748-431e-b43e-a908504f46aa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789601 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/5 695", + "handlers": [], + "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, + "duration": 0.566579237, + "executed": 1692789614, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786612 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787212 + }, + { + "status": 0, + "executed": 1692787512 + }, + { + "status": 0, + "executed": 1692787813 + }, + { + "status": 0, + "executed": 1692788113 + }, + { + "status": 0, + "executed": 1692788413 + }, + { + "status": 0, + "executed": 1692788714 + }, + { + "status": 0, + "executed": 1692789014 + }, + { + "status": 0, + "executed": 1692789314 + }, + { + "status": 0, + "executed": 1692789614 + } + ], + "issued": 1692789614, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789614, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c8313b2e-9173-4498-856f-215f52546e26", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789615 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/6 696", + "handlers": [], + "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, + "duration": 0.538348977, + "executed": 1692789629, + "history": [ + { + "status": 0, + "executed": 1692783625 + }, + { + "status": 0, + "executed": 1692783925 + }, + { + "status": 0, + "executed": 1692784225 + }, + { + "status": 0, + "executed": 1692784525 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786627 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789629 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789629, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "29a62440-b6c2-4f40-8ba2-e778d61a3b51", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/7 697", + "handlers": [], + "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, + "duration": 0.564561224, + "executed": 1692789595, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784792 + }, + { + "status": 0, + "executed": 1692785092 + }, + { + "status": 0, + "executed": 1692785392 + }, + { + "status": 0, + "executed": 1692785692 + }, + { + "status": 0, + "executed": 1692785993 + }, + { + "status": 0, + "executed": 1692786293 + }, + { + "status": 0, + "executed": 1692786592 + }, + { + "status": 0, + "executed": 1692786893 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787794 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788695 + }, + { + "status": 0, + "executed": 1692788995 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789595 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789595, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e2e0b637-9228-47b6-86c7-24ab6fe41ea8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789596 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/8 698", + "handlers": [], + "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, + "duration": 0.58723937, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783619 + }, + { + "status": 0, + "executed": 1692783919 + }, + { + "status": 0, + "executed": 1692784219 + }, + { + "status": 0, + "executed": 1692784519 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fd850e0e-f1c0-4a59-9d4d-08f9986419d8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789623 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/2/9 699", + "handlers": [], + "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, + "duration": 0.558219101, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0db0cbdb-67f2-44df-a5cd-18f86d47cb3b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/0 700", + "handlers": [], + "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, + "duration": 0.520927273, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783637 + }, + { + "status": 0, + "executed": 1692783937 + }, + { + "status": 0, + "executed": 1692784237 + }, + { + "status": 0, + "executed": 1692784538 + }, + { + "status": 0, + "executed": 1692784838 + }, + { + "status": 0, + "executed": 1692785138 + }, + { + "status": 0, + "executed": 1692785438 + }, + { + "status": 0, + "executed": 1692785738 + }, + { + "status": 0, + "executed": 1692786039 + }, + { + "status": 0, + "executed": 1692786339 + }, + { + "status": 0, + "executed": 1692786639 + }, + { + "status": 0, + "executed": 1692786940 + }, + { + "status": 0, + "executed": 1692787240 + }, + { + "status": 0, + "executed": 1692787540 + }, + { + "status": 0, + "executed": 1692787841 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788442 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789343 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "382a3d66-85aa-4c4a-bc32-9d1eb8345a1e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789643 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/1 701", + "handlers": [], + "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, + "duration": 0.549177935, + "executed": 1692789625, + "history": [ + { + "status": 0, + "executed": 1692783621 + }, + { + "status": 0, + "executed": 1692783921 + }, + { + "status": 0, + "executed": 1692784221 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785422 + }, + { + "status": 0, + "executed": 1692785722 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786323 + }, + { + "status": 0, + "executed": 1692786623 + }, + { + "status": 0, + "executed": 1692786923 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787524 + }, + { + "status": 0, + "executed": 1692787824 + }, + { + "status": 0, + "executed": 1692788124 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789025 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789625 + } + ], + "issued": 1692789625, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789625, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4d5d2053-6878-4e44-a568-3ec4b59b6829", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/2 702", + "handlers": [], + "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, + "duration": 0.512314411, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786003 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786602 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3efc57ca-1d37-4a04-9080-577fba890d3d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/3 703", + "handlers": [], + "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, + "duration": 0.608245862, + "executed": 1692789557, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789557 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789557, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "24614529-b2e2-4058-8842-2c19b7cb8a2d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/4 704", + "handlers": [], + "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, + "duration": 0.565798251, + "executed": 1692789635, + "history": [ + { + "status": 0, + "executed": 1692783631 + }, + { + "status": 0, + "executed": 1692783931 + }, + { + "status": 0, + "executed": 1692784231 + }, + { + "status": 0, + "executed": 1692784532 + }, + { + "status": 0, + "executed": 1692784832 + }, + { + "status": 0, + "executed": 1692785132 + }, + { + "status": 0, + "executed": 1692785432 + }, + { + "status": 0, + "executed": 1692785733 + }, + { + "status": 0, + "executed": 1692786033 + }, + { + "status": 0, + "executed": 1692786333 + }, + { + "status": 0, + "executed": 1692786633 + }, + { + "status": 0, + "executed": 1692786933 + }, + { + "status": 0, + "executed": 1692787234 + }, + { + "status": 0, + "executed": 1692787534 + }, + { + "status": 0, + "executed": 1692787834 + }, + { + "status": 0, + "executed": 1692788134 + }, + { + "status": 0, + "executed": 1692788435 + }, + { + "status": 0, + "executed": 1692788735 + }, + { + "status": 0, + "executed": 1692789035 + }, + { + "status": 0, + "executed": 1692789336 + }, + { + "status": 0, + "executed": 1692789635 + } + ], + "issued": 1692789635, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789635, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e83bf38f-b8cb-44ec-93d8-b50cf315f4a1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789636 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/5 705", + "handlers": [], + "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, + "duration": 0.552301735, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "723d367a-0904-48ad-af25-9b365924b096", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/6 706", + "handlers": [], + "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, + "duration": 0.557043651, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786010 + }, + { + "status": 0, + "executed": 1692786310 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e6b29e0c-186c-426d-a685-e52c88ad6353", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/7 707", + "handlers": [], + "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, + "duration": 0.514947103, + "executed": 1692789634, + "history": [ + { + "status": 0, + "executed": 1692783631 + }, + { + "status": 0, + "executed": 1692783931 + }, + { + "status": 0, + "executed": 1692784231 + }, + { + "status": 0, + "executed": 1692784531 + }, + { + "status": 0, + "executed": 1692784831 + }, + { + "status": 0, + "executed": 1692785131 + }, + { + "status": 0, + "executed": 1692785431 + }, + { + "status": 0, + "executed": 1692785731 + }, + { + "status": 0, + "executed": 1692786032 + }, + { + "status": 0, + "executed": 1692786332 + }, + { + "status": 0, + "executed": 1692786632 + }, + { + "status": 0, + "executed": 1692786932 + }, + { + "status": 0, + "executed": 1692787232 + }, + { + "status": 0, + "executed": 1692787533 + }, + { + "status": 0, + "executed": 1692787833 + }, + { + "status": 0, + "executed": 1692788133 + }, + { + "status": 0, + "executed": 1692788434 + }, + { + "status": 0, + "executed": 1692788734 + }, + { + "status": 0, + "executed": 1692789034 + }, + { + "status": 0, + "executed": 1692789335 + }, + { + "status": 0, + "executed": 1692789634 + } + ], + "issued": 1692789634, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789634, + "occurrences": 34840, + "occurrences_watermark": 34840, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "66c3289c-c5b0-4177-8ade-768c50c4a156", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789635 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/8 708", + "handlers": [], + "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, + "duration": 0.745456563, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783587 + }, + { + "status": 0, + "executed": 1692783887 + }, + { + "status": 0, + "executed": 1692784187 + }, + { + "status": 0, + "executed": 1692784487 + }, + { + "status": 0, + "executed": 1692784787 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785988 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787189 + }, + { + "status": 0, + "executed": 1692787489 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788090 + }, + { + "status": 0, + "executed": 1692788390 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789291 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789591, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 34843, + "occurrences_watermark": 34843, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ca5260d8-c5d5-460c-87d2-8213ede575c1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net ge-1/3/9 709", + "handlers": [], + "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, + "duration": 0.559948719, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=ge-1/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-ge-1-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e8bff8f-c60f-4f2f-ac58-fa84a3173926", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net lt-2/0/0 762", + "handlers": [], + "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, + "duration": 0.578119271, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784519 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=lt-2/0/0 ingressOctets=81736340080,egressOctets=85197105780,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-lt-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "14e41fca-e9f4-49e2-96e9-31d22191a89d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789623 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net lt-2/0/0.16 765", + "handlers": [], + "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, + "duration": 0.873243159, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=lt-2/0/0.16 ingressOctets=448581066,egressOctets=84753548495,ingressErrors=0,egressErrors=0,ingressOctetsv6=442632,egressOctetsv6=7259486,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-lt-2-0-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "24b90c49-8872-4056-b46d-952bc98b5f97", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net lt-2/0/0.61 766", + "handlers": [], + "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, + "duration": 0.599753294, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=lt-2/0/0.61 ingressOctets=81287595452,egressOctets=449341170,ingressErrors=0,egressErrors=0,ingressOctetsv6=37872377606,egressOctetsv6=859624,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 34839, + "occurrences_watermark": 34839, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-lt-2-0-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cb7969e1-585e-4593-a2a6-38ee8752dda2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-0/0/0 554", + "handlers": [], + "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, + "duration": 0.593825973, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783623 + }, + { + "status": 0, + "executed": 1692783923 + }, + { + "status": 0, + "executed": 1692784223 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785424 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786025 + }, + { + "status": 0, + "executed": 1692786325 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=xe-0/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f88947a5-33ce-4130-b86a-9465397010d5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-0/0/1 555", + "handlers": [], + "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, + "duration": 0.549019918, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=xe-0/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9e800d38-448b-49aa-92f7-704358f04aaa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-0/1/0 556", + "handlers": [], + "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, + "duration": 0.528658577, + "executed": 1692789650, + "history": [ + { + "status": 0, + "executed": 1692783646 + }, + { + "status": 0, + "executed": 1692783946 + }, + { + "status": 0, + "executed": 1692784246 + }, + { + "status": 0, + "executed": 1692784546 + }, + { + "status": 0, + "executed": 1692784846 + }, + { + "status": 0, + "executed": 1692785146 + }, + { + "status": 0, + "executed": 1692785447 + }, + { + "status": 0, + "executed": 1692785747 + }, + { + "status": 0, + "executed": 1692786048 + }, + { + "status": 0, + "executed": 1692786348 + }, + { + "status": 0, + "executed": 1692786647 + }, + { + "status": 0, + "executed": 1692786947 + }, + { + "status": 0, + "executed": 1692787248 + }, + { + "status": 0, + "executed": 1692787548 + }, + { + "status": 0, + "executed": 1692787849 + }, + { + "status": 0, + "executed": 1692788149 + }, + { + "status": 0, + "executed": 1692788449 + }, + { + "status": 0, + "executed": 1692788749 + }, + { + "status": 0, + "executed": 1692789050 + }, + { + "status": 0, + "executed": 1692789350 + }, + { + "status": 0, + "executed": 1692789650 + } + ], + "issued": 1692789650, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=xe-0/1/0 ingressOctets=13460561835,egressOctets=15835492750,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789650, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-xe-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "20616da5-7f93-4112-8b09-33fc4dedc493", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789650 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-0/1/0.3015 632", + "handlers": [], + "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, + "duration": 0.586997522, + "executed": 1692789635, + "history": [ + { + "status": 0, + "executed": 1692783632 + }, + { + "status": 0, + "executed": 1692783932 + }, + { + "status": 0, + "executed": 1692784232 + }, + { + "status": 0, + "executed": 1692784532 + }, + { + "status": 0, + "executed": 1692784832 + }, + { + "status": 0, + "executed": 1692785132 + }, + { + "status": 0, + "executed": 1692785432 + }, + { + "status": 0, + "executed": 1692785733 + }, + { + "status": 0, + "executed": 1692786033 + }, + { + "status": 0, + "executed": 1692786333 + }, + { + "status": 0, + "executed": 1692786633 + }, + { + "status": 0, + "executed": 1692786933 + }, + { + "status": 0, + "executed": 1692787234 + }, + { + "status": 0, + "executed": 1692787534 + }, + { + "status": 0, + "executed": 1692787834 + }, + { + "status": 0, + "executed": 1692788134 + }, + { + "status": 0, + "executed": 1692788435 + }, + { + "status": 0, + "executed": 1692788735 + }, + { + "status": 0, + "executed": 1692789035 + }, + { + "status": 0, + "executed": 1692789336 + }, + { + "status": 0, + "executed": 1692789635 + } + ], + "issued": 1692789635, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=xe-0/1/0.3015 ingressOctets=13460544120,egressOctets=15571558328,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789635, + "occurrences": 34844, + "occurrences_watermark": 34844, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-xe-0-1-0.3015", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9a204750-d61e-4473-b3bc-fcccbfc55e08", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789636 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-0/1/1 557", + "handlers": [], + "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, + "duration": 0.613807972, + "executed": 1692789621, + "history": [ + { + "status": 0, + "executed": 1692783616 + }, + { + "status": 0, + "executed": 1692783916 + }, + { + "status": 0, + "executed": 1692784216 + }, + { + "status": 0, + "executed": 1692784516 + }, + { + "status": 0, + "executed": 1692784817 + }, + { + "status": 0, + "executed": 1692785117 + }, + { + "status": 0, + "executed": 1692785417 + }, + { + "status": 0, + "executed": 1692785717 + }, + { + "status": 0, + "executed": 1692786019 + }, + { + "status": 0, + "executed": 1692786319 + }, + { + "status": 0, + "executed": 1692786618 + }, + { + "status": 0, + "executed": 1692786919 + }, + { + "status": 0, + "executed": 1692787219 + }, + { + "status": 0, + "executed": 1692787519 + }, + { + "status": 0, + "executed": 1692787820 + }, + { + "status": 0, + "executed": 1692788120 + }, + { + "status": 0, + "executed": 1692788421 + }, + { + "status": 0, + "executed": 1692788721 + }, + { + "status": 0, + "executed": 1692789021 + }, + { + "status": 0, + "executed": 1692789322 + }, + { + "status": 0, + "executed": 1692789621 + } + ], + "issued": 1692789621, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=xe-0/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789621, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e3c2d6d6-e052-4ced-a1de-e492c7f17879", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789622 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-1/0/0 526", + "handlers": [], + "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, + "duration": 0.58579211, + "executed": 1692789621, + "history": [ + { + "status": 0, + "executed": 1692783616 + }, + { + "status": 0, + "executed": 1692783916 + }, + { + "status": 0, + "executed": 1692784216 + }, + { + "status": 0, + "executed": 1692784516 + }, + { + "status": 0, + "executed": 1692784817 + }, + { + "status": 0, + "executed": 1692785117 + }, + { + "status": 0, + "executed": 1692785417 + }, + { + "status": 0, + "executed": 1692785717 + }, + { + "status": 0, + "executed": 1692786019 + }, + { + "status": 0, + "executed": 1692786319 + }, + { + "status": 0, + "executed": 1692786618 + }, + { + "status": 0, + "executed": 1692786919 + }, + { + "status": 0, + "executed": 1692787219 + }, + { + "status": 0, + "executed": 1692787519 + }, + { + "status": 0, + "executed": 1692787820 + }, + { + "status": 0, + "executed": 1692788120 + }, + { + "status": 0, + "executed": 1692788421 + }, + { + "status": 0, + "executed": 1692788721 + }, + { + "status": 0, + "executed": 1692789021 + }, + { + "status": 0, + "executed": 1692789322 + }, + { + "status": 0, + "executed": 1692789621 + } + ], + "issued": 1692789621, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=xe-1/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789621, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1290b732-02cc-4abc-93b8-f13f6dbfe74b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789622 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-1/0/1 527", + "handlers": [], + "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, + "duration": 0.570001683, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788167 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=xe-1/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 34845, + "occurrences_watermark": 34845, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ced06668-a333-4cea-9f20-4bff3721866a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-1/1/0 528", + "handlers": [], + "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, + "duration": 0.583002281, + "executed": 1692789644, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785741 + }, + { + "status": 0, + "executed": 1692786042 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787843 + }, + { + "status": 0, + "executed": 1692788143 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789044 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789644 + } + ], + "issued": 1692789644, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=xe-1/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789644, + "occurrences": 34841, + "occurrences_watermark": 34841, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-xe-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8d6872aa-00c3-4c31-b227-ac0953cf1f47", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.dub2.ie.geant.net xe-1/1/1 529", + "handlers": [], + "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, + "duration": 0.554773792, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.dub2.ie.geant.net,interface_name=xe-1/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 34842, + "occurrences_watermark": 34842, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.dub2.ie.geant.net-xe-1-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.dub2.ie.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.dub2.ie.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4669d4a5-5882-4860-81fd-df19a9e956b5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 702074", + "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, + "duration": 0.330403035, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "dscp32_counters,service_id=702074,hostname=mx1.fra.de.geant.net,interface_name=ae38.333 ingressOctets=3490446522546,egressOctets=1314528261112\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 2032, + "occurrences_watermark": 2032, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-CYNET_AP2_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7b6b5a43-b718-4f7b-bb93-9d7165d3fc7d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 663228", + "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, + "duration": 0.374618439, + "executed": 1692789449, + "history": [ + { + "status": 0, + "executed": 1692783445 + }, + { + "status": 0, + "executed": 1692783745 + }, + { + "status": 0, + "executed": 1692784045 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784646 + }, + { + "status": 0, + "executed": 1692784946 + }, + { + "status": 0, + "executed": 1692785246 + }, + { + "status": 0, + "executed": 1692785547 + }, + { + "status": 0, + "executed": 1692785847 + }, + { + "status": 0, + "executed": 1692786147 + }, + { + "status": 0, + "executed": 1692786448 + }, + { + "status": 0, + "executed": 1692786748 + }, + { + "status": 0, + "executed": 1692787048 + }, + { + "status": 0, + "executed": 1692787348 + }, + { + "status": 0, + "executed": 1692787649 + }, + { + "status": 0, + "executed": 1692787949 + }, + { + "status": 0, + "executed": 1692788249 + }, + { + "status": 0, + "executed": 1692788549 + }, + { + "status": 0, + "executed": 1692788849 + }, + { + "status": 0, + "executed": 1692789149 + }, + { + "status": 0, + "executed": 1692789449 + } + ], + "issued": 1692789449, + "output": "dscp32_counters,service_id=663228,hostname=mx1.fra.de.geant.net,interface_name=ae21.333 ingressOctets=62977509916657,egressOctets=421707754461524\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789449, + "occurrences": 3425, + "occurrences_watermark": 3425, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-IUCC_AP2_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9d2f1191-5986-462d-b2dc-9b7336b0321e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789450 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.fra.de.geant.net", + "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, + "duration": 4.579899041, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786447 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "2023-08-23 11:17:29,052 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:29,052 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:29,052 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:29,053 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.fra.de.geant.net\n2023-08-23 11:17:29,056 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:29,077 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.fra.de.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.1 octets=359841148310\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.2 octets=24876340467\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.3 octets=0\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.4 octets=0\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.5 octets=0\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.6 octets=0\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.7 octets=0\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.8 octets=48617419764\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.9 octets=27758599646\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.10 octets=819105685628\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.11 octets=404935326073\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.12 octets=381998465564\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.13 octets=1563472105146\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.14 octets=27321178996\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.15 octets=814281362039\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.16 octets=507345209803\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.17 octets=333597275700\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.18 octets=1421780744867\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.19 octets=458277881993\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.20 octets=760636337328\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.21 octets=447058627443\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.22 octets=0\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.23 octets=819339460933\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.24 octets=1842087731119\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.25 octets=147726985582\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.26 octets=5078238770\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.27 octets=80969657087\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.28 octets=407051370154\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.29 octets=2607374985240\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.30 octets=3682346332891\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.31 octets=1609979019587\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.32 octets=3339268542694\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.33 octets=3151801401437\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.34 octets=390353649021\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.35 octets=1973585959528\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.36 octets=1932840046294\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.37 octets=7160967483625\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.38 octets=10832636278998\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.39 octets=1998971100958\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.40 octets=1007184177413\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.41 octets=611418956466\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.42 octets=4874692745662\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.43 octets=14706474986384\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.44 octets=1361175913960\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.45 octets=10728163069103\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.46 octets=641047779488\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.47 octets=2005064188207\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.48 octets=1008508743321\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.49 octets=606674107302\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.50 octets=4955179966777\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.51 octets=14950796933473\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.52 octets=1385669358539\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.53 octets=24428046644211\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.54 octets=441575199687\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.55 octets=1013957655722\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.56 octets=1176897894302\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.57 octets=850854951013\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.58 octets=831372973390\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.59 octets=1603621074948\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.60 octets=0\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.61 octets=140261763810\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.62 octets=139540493397\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.63 octets=22011983223\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.64 octets=521650352106\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.65 octets=564256815616\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.66 octets=87426354806\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.67 octets=1584538047454\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.68 octets=1827538935373\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.69 octets=520795999178\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.70 octets=2046318040\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.71 octets=0\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.222.72 octets=0\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.223.1 octets=48255406679660\nmulticast,hostname=mx1.fra.de.geant.net,subscription=232.223.223.22 octets=98317939167974\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 1414, + "occurrences_watermark": 1414, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.fra.de.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "edbad97f-dd0e-49e1-b717-f63bab2ce232", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae0 892", + "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, + "duration": 0.423109303, + "executed": 1692789682, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786381 + }, + { + "status": 0, + "executed": 1692786681 + }, + { + "status": 0, + "executed": 1692786981 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788482 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789682 + } + ], + "issued": 1692789682, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae0 ingressOctets=18186713066581878,egressOctets=28017048436992587,ingressErrors=7,egressErrors=5,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789682, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "52f901ae-477e-4227-a2a8-82ecf9e90dde", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789683 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae0.0 896", + "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, + "duration": 0.383184494, + "executed": 1692789689, + "history": [ + { + "status": 0, + "executed": 1692783686 + }, + { + "status": 0, + "executed": 1692783986 + }, + { + "status": 0, + "executed": 1692784286 + }, + { + "status": 0, + "executed": 1692784587 + }, + { + "status": 0, + "executed": 1692784887 + }, + { + "status": 0, + "executed": 1692785187 + }, + { + "status": 0, + "executed": 1692785487 + }, + { + "status": 0, + "executed": 1692785787 + }, + { + "status": 0, + "executed": 1692786088 + }, + { + "status": 0, + "executed": 1692786388 + }, + { + "status": 0, + "executed": 1692786687 + }, + { + "status": 0, + "executed": 1692786988 + }, + { + "status": 0, + "executed": 1692787288 + }, + { + "status": 0, + "executed": 1692787588 + }, + { + "status": 0, + "executed": 1692787888 + }, + { + "status": 0, + "executed": 1692788188 + }, + { + "status": 0, + "executed": 1692788489 + }, + { + "status": 0, + "executed": 1692788789 + }, + { + "status": 0, + "executed": 1692789089 + }, + { + "status": 0, + "executed": 1692789389 + }, + { + "status": 0, + "executed": 1692789689 + } + ], + "issued": 1692789689, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae0.0 ingressOctets=18186723979277102,egressOctets=28017079124675057,ingressErrors=0,egressErrors=0,ingressOctetsv6=388268764519033,egressOctetsv6=1944802559447850,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789689, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "743add32-e4fb-4af2-ac13-1c9af14d786b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789689 + }, + { + "check": { + "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, + "runtime_assets": null, + "subscriptions": [ + "interfacecounters" + ], + "proxy_entity_name": "mx1.fra.de.geant.net", + "check_hooks": null, + "stdin": false, + "subdue": null, + "ttl": 0, + "timeout": 0, + "round_robin": true, + "duration": 0.36918868, + "executed": 1692789695, + "history": [ + { + "status": 0, + "executed": 1692783692 + }, + { + "status": 0, + "executed": 1692783992 + }, + { + "status": 0, + "executed": 1692784292 + }, + { + "status": 0, + "executed": 1692784593 + }, + { + "status": 0, + "executed": 1692784893 + }, + { + "status": 0, + "executed": 1692785193 + }, + { + "status": 0, + "executed": 1692785493 + }, + { + "status": 0, + "executed": 1692785793 + }, + { + "status": 0, + "executed": 1692786094 + }, + { + "status": 0, + "executed": 1692786394 + }, + { + "status": 0, + "executed": 1692786693 + }, + { + "status": 0, + "executed": 1692786994 + }, + { + "status": 0, + "executed": 1692787294 + }, + { + "status": 0, + "executed": 1692787594 + }, + { + "status": 0, + "executed": 1692787894 + }, + { + "status": 0, + "executed": 1692788194 + }, + { + "status": 0, + "executed": 1692788495 + }, + { + "status": 0, + "executed": 1692788795 + }, + { + "status": 0, + "executed": 1692789095 + }, + { + "status": 0, + "executed": 1692789395 + }, + { + "status": 0, + "executed": 1692789695 + } + ], + "issued": 1692789695, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae10 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789695, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fa23bc40-9653-48e8-a40f-4876bc55afa0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789695 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae12 745", + "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, + "duration": 0.43230148, + "executed": 1692789682, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786381 + }, + { + "status": 0, + "executed": 1692786681 + }, + { + "status": 0, + "executed": 1692786981 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788482 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789682 + } + ], + "issued": 1692789682, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae12 ingressOctets=55782078275158169,egressOctets=22285410866273109,ingressErrors=348,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789682, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e46b112b-d586-47cc-b4f8-d21689616ffe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789683 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae12.100 522", + "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, + "duration": 0.387859459, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786378 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789679, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae12.100 ingressOctets=55782068335768784,egressOctets=22285409764934577,ingressErrors=0,egressErrors=0,ingressOctetsv6=1886197895929337,egressOctetsv6=1123094207567760,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae12.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "459d64f6-9303-451a-a235-780cb9bf8f35", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae13 746", + "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, + "duration": 0.394634059, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae13 ingressOctets=6679506091592048,egressOctets=1533006009240148,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=2878368\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5c25e48a-b498-4805-80fa-bf6325e1fcaf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae13.0 897", + "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, + "duration": 0.409469358, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786623 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae13.0 ingressOctets=6679512518863667,egressOctets=1533006065651373,ingressErrors=0,egressErrors=0,ingressOctetsv6=110238252208470,egressOctetsv6=168900589721353,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae13.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "80b19f36-31fe-44e8-8255-1f63cc0b4607", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae14 747", + "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, + "duration": 0.423923404, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae14 ingressOctets=136848459539,egressOctets=87979394786,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae14", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1553ba98-2365-4496-8c50-3fd1ae66e8c5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789612 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae14.100 1047", + "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, + "duration": 0.38537101, + "executed": 1692789650, + "history": [ + { + "status": 0, + "executed": 1692783646 + }, + { + "status": 0, + "executed": 1692783946 + }, + { + "status": 0, + "executed": 1692784246 + }, + { + "status": 0, + "executed": 1692784546 + }, + { + "status": 0, + "executed": 1692784846 + }, + { + "status": 0, + "executed": 1692785146 + }, + { + "status": 0, + "executed": 1692785447 + }, + { + "status": 0, + "executed": 1692785747 + }, + { + "status": 0, + "executed": 1692786048 + }, + { + "status": 0, + "executed": 1692786348 + }, + { + "status": 0, + "executed": 1692786647 + }, + { + "status": 0, + "executed": 1692786948 + }, + { + "status": 0, + "executed": 1692787248 + }, + { + "status": 0, + "executed": 1692787548 + }, + { + "status": 0, + "executed": 1692787849 + }, + { + "status": 0, + "executed": 1692788149 + }, + { + "status": 0, + "executed": 1692788449 + }, + { + "status": 0, + "executed": 1692788749 + }, + { + "status": 0, + "executed": 1692789050 + }, + { + "status": 0, + "executed": 1692789350 + }, + { + "status": 0, + "executed": 1692789650 + } + ], + "issued": 1692789650, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae14.100 ingressOctets=3260778525,egressOctets=2476084123,ingressErrors=0,egressErrors=0,ingressOctetsv6=271906917,egressOctetsv6=775193977,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789650, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae14.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "286a532d-23dc-48d3-ae84-861e1d3e54b4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789650 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae14.333 1043", + "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, + "duration": 0.398134031, + "executed": 1692789690, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789690 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae14.333 ingressOctets=130880054659,egressOctets=85094591758,ingressErrors=0,egressErrors=0,ingressOctetsv6=170365191,egressOctetsv6=524147152,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789690, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae14.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c4b71d9f-acad-4744-a7e2-ed56d18f94e4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae15 748", + "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, + "duration": 0.409662529, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae15 ingressOctets=52349765111,egressOctets=24706717715133,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=382554838\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae15", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "01e24944-0170-4cbf-a66b-78b71412e950", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae15.720 1192", + "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, + "duration": 0.824711717, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae15.720 ingressOctets=41517660930,egressOctets=24705247664528,ingressErrors=0,egressErrors=0,ingressOctetsv6=153521727,egressOctetsv6=8436,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 34830, + "occurrences_watermark": 34830, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae15.720", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fb66e6a2-0404-4c0a-bcb1-00ecaeaeb091", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae16 749", + "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, + "duration": 0.387500259, + "executed": 1692789685, + "history": [ + { + "status": 0, + "executed": 1692783682 + }, + { + "status": 0, + "executed": 1692783982 + }, + { + "status": 0, + "executed": 1692784282 + }, + { + "status": 0, + "executed": 1692784583 + }, + { + "status": 0, + "executed": 1692784883 + }, + { + "status": 0, + "executed": 1692785183 + }, + { + "status": 0, + "executed": 1692785483 + }, + { + "status": 0, + "executed": 1692785783 + }, + { + "status": 0, + "executed": 1692786084 + }, + { + "status": 0, + "executed": 1692786384 + }, + { + "status": 0, + "executed": 1692786683 + }, + { + "status": 0, + "executed": 1692786984 + }, + { + "status": 0, + "executed": 1692787284 + }, + { + "status": 0, + "executed": 1692787584 + }, + { + "status": 0, + "executed": 1692787884 + }, + { + "status": 0, + "executed": 1692788184 + }, + { + "status": 0, + "executed": 1692788485 + }, + { + "status": 0, + "executed": 1692788785 + }, + { + "status": 0, + "executed": 1692789085 + }, + { + "status": 0, + "executed": 1692789385 + }, + { + "status": 0, + "executed": 1692789685 + } + ], + "issued": 1692789685, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae16 ingressOctets=21713634092752,egressOctets=1483531300,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789685, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6ca63c9f-9925-4abe-bd40-d17e4f1b1817", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789685 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae16.740 1194", + "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, + "duration": 0.356371421, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786061 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae16.740 ingressOctets=21702801992452,egressOctets=32887836,ingressErrors=0,egressErrors=0,ingressOctetsv6=21319172,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 14322, + "occurrences_watermark": 14322, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae16.740", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "af01d64c-4cae-4756-92f8-241c35dd7ad4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae17 750", + "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, + "duration": 0.333160968, + "executed": 1692789678, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786675 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789678 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae17 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789678, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae17", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "17b2fd10-5e51-4786-9a21-264e845c18ee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae17.100 1226", + "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, + "duration": 0.393260126, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae17.100 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae17.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8d324fce-b29d-4da6-a225-263a20c4dbdc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae17.200 1058", + "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, + "duration": 0.431134553, + "executed": 1692789704, + "history": [ + { + "status": 0, + "executed": 1692783701 + }, + { + "status": 0, + "executed": 1692784001 + }, + { + "status": 0, + "executed": 1692784301 + }, + { + "status": 0, + "executed": 1692784602 + }, + { + "status": 0, + "executed": 1692784902 + }, + { + "status": 0, + "executed": 1692785202 + }, + { + "status": 0, + "executed": 1692785502 + }, + { + "status": 0, + "executed": 1692785802 + }, + { + "status": 0, + "executed": 1692786103 + }, + { + "status": 0, + "executed": 1692786403 + }, + { + "status": 0, + "executed": 1692786703 + }, + { + "status": 0, + "executed": 1692787003 + }, + { + "status": 0, + "executed": 1692787303 + }, + { + "status": 0, + "executed": 1692787603 + }, + { + "status": 0, + "executed": 1692787903 + }, + { + "status": 0, + "executed": 1692788204 + }, + { + "status": 0, + "executed": 1692788504 + }, + { + "status": 0, + "executed": 1692788804 + }, + { + "status": 0, + "executed": 1692789104 + }, + { + "status": 0, + "executed": 1692789404 + }, + { + "status": 0, + "executed": 1692789704 + } + ], + "issued": 1692789704, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae17.200 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789704, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae17.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c99d5928-bf1a-4c94-81d6-0a2d5cfc5aa5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789704 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae17.220 983", + "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, + "duration": 0.404737921, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae17.220 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae17.220", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c63a3cee-0e7c-447c-b3f5-6736bb43998e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae17.333 1143", + "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, + "duration": 0.383262436, + "executed": 1692789681, + "history": [ + { + "status": 0, + "executed": 1692783678 + }, + { + "status": 0, + "executed": 1692783978 + }, + { + "status": 0, + "executed": 1692784278 + }, + { + "status": 0, + "executed": 1692784578 + }, + { + "status": 0, + "executed": 1692784878 + }, + { + "status": 0, + "executed": 1692785178 + }, + { + "status": 0, + "executed": 1692785478 + }, + { + "status": 0, + "executed": 1692785779 + }, + { + "status": 0, + "executed": 1692786079 + }, + { + "status": 0, + "executed": 1692786379 + }, + { + "status": 0, + "executed": 1692786679 + }, + { + "status": 0, + "executed": 1692786979 + }, + { + "status": 0, + "executed": 1692787280 + }, + { + "status": 0, + "executed": 1692787580 + }, + { + "status": 0, + "executed": 1692787880 + }, + { + "status": 0, + "executed": 1692788180 + }, + { + "status": 0, + "executed": 1692788481 + }, + { + "status": 0, + "executed": 1692788781 + }, + { + "status": 0, + "executed": 1692789081 + }, + { + "status": 0, + "executed": 1692789381 + }, + { + "status": 0, + "executed": 1692789681 + } + ], + "issued": 1692789681, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae17.333 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789681, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae17.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c4f7be85-5e18-4b3b-bb76-d3701603f59f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae18 751", + "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, + "duration": 0.453908561, + "executed": 1692789681, + "history": [ + { + "status": 0, + "executed": 1692783678 + }, + { + "status": 0, + "executed": 1692783978 + }, + { + "status": 0, + "executed": 1692784278 + }, + { + "status": 0, + "executed": 1692784578 + }, + { + "status": 0, + "executed": 1692784878 + }, + { + "status": 0, + "executed": 1692785178 + }, + { + "status": 0, + "executed": 1692785478 + }, + { + "status": 0, + "executed": 1692785779 + }, + { + "status": 0, + "executed": 1692786079 + }, + { + "status": 0, + "executed": 1692786379 + }, + { + "status": 0, + "executed": 1692786679 + }, + { + "status": 0, + "executed": 1692786979 + }, + { + "status": 0, + "executed": 1692787280 + }, + { + "status": 0, + "executed": 1692787580 + }, + { + "status": 0, + "executed": 1692787880 + }, + { + "status": 0, + "executed": 1692788180 + }, + { + "status": 0, + "executed": 1692788481 + }, + { + "status": 0, + "executed": 1692788781 + }, + { + "status": 0, + "executed": 1692789081 + }, + { + "status": 0, + "executed": 1692789381 + }, + { + "status": 0, + "executed": 1692789681 + } + ], + "issued": 1692789681, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae18 ingressOctets=117786349103229,egressOctets=162346334037536,ingressErrors=81,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789681, + "occurrences": 7479, + "occurrences_watermark": 7479, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae18", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ad19f621-101b-4e7b-8d7c-192a280974b0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae18.2602 730", + "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, + "duration": 0.378359527, + "executed": 1692789695, + "history": [ + { + "status": 0, + "executed": 1692783692 + }, + { + "status": 0, + "executed": 1692783992 + }, + { + "status": 0, + "executed": 1692784292 + }, + { + "status": 0, + "executed": 1692784593 + }, + { + "status": 0, + "executed": 1692784893 + }, + { + "status": 0, + "executed": 1692785193 + }, + { + "status": 0, + "executed": 1692785493 + }, + { + "status": 0, + "executed": 1692785793 + }, + { + "status": 0, + "executed": 1692786094 + }, + { + "status": 0, + "executed": 1692786394 + }, + { + "status": 0, + "executed": 1692786693 + }, + { + "status": 0, + "executed": 1692786994 + }, + { + "status": 0, + "executed": 1692787294 + }, + { + "status": 0, + "executed": 1692787594 + }, + { + "status": 0, + "executed": 1692787894 + }, + { + "status": 0, + "executed": 1692788194 + }, + { + "status": 0, + "executed": 1692788495 + }, + { + "status": 0, + "executed": 1692788795 + }, + { + "status": 0, + "executed": 1692789095 + }, + { + "status": 0, + "executed": 1692789395 + }, + { + "status": 0, + "executed": 1692789695 + } + ], + "issued": 1692789695, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae18.2602 ingressOctets=37899464363466,egressOctets=51978153763560,ingressErrors=0,egressErrors=0,ingressOctetsv6=1656968498738,egressOctetsv6=13406836456033,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789695, + "occurrences": 7479, + "occurrences_watermark": 7479, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae18.2602", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc055893-8857-4a97-a661-352cc494ba15", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789695 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae18.333 717", + "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, + "duration": 0.39263336, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae18.333 ingressOctets=79884392817163,egressOctets=110365567709297,ingressErrors=0,egressErrors=0,ingressOctetsv6=8233238825401,egressOctetsv6=9129328987983,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 7479, + "occurrences_watermark": 7479, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae18.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "02385b6e-3a6a-4edc-a513-a48bc8a90c94", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789706 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae18.854 1278", + "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, + "duration": 0.382657619, + "executed": 1692789662, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784559 + }, + { + "status": 0, + "executed": 1692784859 + }, + { + "status": 0, + "executed": 1692785159 + }, + { + "status": 0, + "executed": 1692785459 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786360 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786960 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787561 + }, + { + "status": 0, + "executed": 1692787861 + }, + { + "status": 0, + "executed": 1692788161 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789062 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789662 + } + ], + "issued": 1692789662, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae18.854 ingressOctets=3247710771,egressOctets=3276132047,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789662, + "occurrences": 7479, + "occurrences_watermark": 7479, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae18.854", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f0e57194-97ad-4397-b8c3-3f1763d60962", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae19 834", + "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, + "duration": 0.422098634, + "executed": 1692789701, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783998 + }, + { + "status": 0, + "executed": 1692784298 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785499 + }, + { + "status": 0, + "executed": 1692785799 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787300 + }, + { + "status": 0, + "executed": 1692787600 + }, + { + "status": 0, + "executed": 1692787900 + }, + { + "status": 0, + "executed": 1692788201 + }, + { + "status": 0, + "executed": 1692788501 + }, + { + "status": 0, + "executed": 1692788801 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789701 + } + ], + "issued": 1692789701, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae19 ingressOctets=15459371961908,egressOctets=24767955843947,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789701, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae19", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dc69f31e-d136-4f49-bccf-2e178c031f61", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae19.112 891", + "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, + "duration": 0.394595595, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae19.112 ingressOctets=72782390199,egressOctets=146536348741,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae19.112", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f29dfacf-fde7-426e-af22-c2512c96a0ed", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae19.114 1339", + "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, + "duration": 0.427137986, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae19.114 ingressOctets=15380630672442,egressOctets=24618641870138,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 14322, + "occurrences_watermark": 14322, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae19.114", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6758ab83-fb81-4b99-a5a5-f3900ad4baef", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae19.682 1059", + "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, + "duration": 0.407979356, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae19.682 ingressOctets=277524520,egressOctets=1760520848,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae19.682", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "12dbbf7e-4b76-4d55-8117-d0780f38e06f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae19.683 1155", + "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, + "duration": 0.364811952, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae19.683 ingressOctets=277627663,egressOctets=1016903874,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae19.683", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ba3ab818-3b2c-4a1f-9e57-f5580dfee70c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae2 652", + "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, + "duration": 0.391956087, + "executed": 1692789678, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786675 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789678 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae2 ingressOctets=153334414340819131,egressOctets=154306773872255601,ingressErrors=59,egressErrors=25,ingressDiscards=0,egressDiscards=5467\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789678, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "21c14d5a-a739-4bb3-a505-09c63f2da6fd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae2.0 1377", + "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, + "duration": 0.352329554, + "executed": 1692789700, + "history": [ + { + "status": 0, + "executed": 1692783697 + }, + { + "status": 0, + "executed": 1692783998 + }, + { + "status": 0, + "executed": 1692784298 + }, + { + "status": 0, + "executed": 1692784598 + }, + { + "status": 0, + "executed": 1692784898 + }, + { + "status": 0, + "executed": 1692785198 + }, + { + "status": 0, + "executed": 1692785498 + }, + { + "status": 0, + "executed": 1692785799 + }, + { + "status": 0, + "executed": 1692786099 + }, + { + "status": 0, + "executed": 1692786399 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692786999 + }, + { + "status": 0, + "executed": 1692787300 + }, + { + "status": 0, + "executed": 1692787600 + }, + { + "status": 0, + "executed": 1692787900 + }, + { + "status": 0, + "executed": 1692788200 + }, + { + "status": 0, + "executed": 1692788500 + }, + { + "status": 0, + "executed": 1692788801 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789700 + } + ], + "issued": 1692789700, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae2.0 ingressOctets=153334477026566924,egressOctets=154307137526493838,ingressErrors=0,egressErrors=0,ingressOctetsv6=15131694303414634,egressOctetsv6=11919283971074069,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789700, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ac5c749c-6327-4c23-8011-8ec990e577a7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae20 753", + "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, + "duration": 0.405759912, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae20 ingressOctets=4591260336422549,egressOctets=143522280099401,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae20", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ce5504bf-16b7-4f1e-ae8a-e192b295ccac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae20.0 1237", + "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, + "duration": 0.619599051, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786217 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789522, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae20.0 ingressOctets=4591213681793791,egressOctets=143520925701728,ingressErrors=0,egressErrors=0,ingressOctetsv6=75468823708934,egressOctetsv6=2327197427400,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae20.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ac1700db-72dc-44fb-8ee7-494c4a67a7aa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789523 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae21 754", + "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, + "duration": 0.41462473, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae21 ingressOctets=183254760439695,egressOctets=9898131389232046,ingressErrors=200,egressErrors=0,ingressDiscards=0,egressDiscards=604587\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "78e5f235-564f-4e8d-b45f-d5ffe3e0a28c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae21.100 1013", + "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, + "duration": 0.358516247, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae21.100 ingressOctets=6417493972727,egressOctets=8602275490213392,ingressErrors=0,egressErrors=0,ingressOctetsv6=5801532682430,egressOctetsv6=31775399661,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae21.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "21c02e9d-2c8e-485c-9b47-543b602b9b32", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae21.333 806", + "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, + "duration": 0.398537593, + "executed": 1692789690, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783987 + }, + { + "status": 0, + "executed": 1692784287 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785788 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787289 + }, + { + "status": 0, + "executed": 1692787589 + }, + { + "status": 0, + "executed": 1692787889 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788790 + }, + { + "status": 0, + "executed": 1692789090 + }, + { + "status": 0, + "executed": 1692789390 + }, + { + "status": 0, + "executed": 1692789690 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae21.333 ingressOctets=176826098061416,egressOctets=1295866373152264,ingressErrors=0,egressErrors=0,ingressOctetsv6=30838908117079,egressOctetsv6=233248273213,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789690, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae21.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "35a5d299-f135-4b90-8d26-78d101191cb2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789690 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae24 757", + "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, + "duration": 0.383145571, + "executed": 1692789508, + "history": [ + { + "status": 0, + "executed": 1692783504 + }, + { + "status": 0, + "executed": 1692783804 + }, + { + "status": 0, + "executed": 1692784104 + }, + { + "status": 0, + "executed": 1692784404 + }, + { + "status": 0, + "executed": 1692784704 + }, + { + "status": 0, + "executed": 1692785005 + }, + { + "status": 0, + "executed": 1692785305 + }, + { + "status": 0, + "executed": 1692785605 + }, + { + "status": 0, + "executed": 1692785905 + }, + { + "status": 0, + "executed": 1692786206 + }, + { + "status": 0, + "executed": 1692786506 + }, + { + "status": 0, + "executed": 1692786806 + }, + { + "status": 0, + "executed": 1692787106 + }, + { + "status": 0, + "executed": 1692787407 + }, + { + "status": 0, + "executed": 1692787707 + }, + { + "status": 0, + "executed": 1692788008 + }, + { + "status": 0, + "executed": 1692788308 + }, + { + "status": 0, + "executed": 1692788608 + }, + { + "status": 0, + "executed": 1692788908 + }, + { + "status": 0, + "executed": 1692789208 + }, + { + "status": 0, + "executed": 1692789508 + } + ], + "issued": 1692789508, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae24 ingressOctets=861002054903,egressOctets=1499631607166,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789508, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae24", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ebaa964-7df4-4efd-bb5e-f37927fed06c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789509 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae24.0 1251", + "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, + "duration": 0.397234136, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789103 + }, + { + "status": 0, + "executed": 1692789403 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae24.0 ingressOctets=861015985563,egressOctets=1499611754456,ingressErrors=0,egressErrors=0,ingressOctetsv6=6570025610,egressOctetsv6=4641759435,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae24.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "95102dff-1326-4d28-85c0-ab0fea16fa50", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789703 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae25 758", + "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, + "duration": 0.462918978, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783432 + }, + { + "status": 0, + "executed": 1692783732 + }, + { + "status": 0, + "executed": 1692784032 + }, + { + "status": 0, + "executed": 1692784332 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785533 + }, + { + "status": 0, + "executed": 1692785833 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786434 + }, + { + "status": 0, + "executed": 1692786734 + }, + { + "status": 0, + "executed": 1692787034 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787635 + }, + { + "status": 0, + "executed": 1692787935 + }, + { + "status": 0, + "executed": 1692788235 + }, + { + "status": 0, + "executed": 1692788535 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae25 ingressOctets=404275758660407,egressOctets=146322979945653,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0ea39e40-cca6-46dc-93fb-3a3218da72fa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789436 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae25.333 1343", + "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, + "duration": 0.379163071, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789107 + }, + { + "status": 0, + "executed": 1692789407 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae25.333 ingressOctets=404281019559806,egressOctets=146326199174608,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae25.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2bab85da-f002-4159-8305-94ed090ad909", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae26 759", + "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, + "duration": 0.405303852, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae26 ingressOctets=855216200,egressOctets=353051382,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae26", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "505b3581-5741-4c15-8227-6b3f4263515f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae27 760", + "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, + "duration": 0.380868932, + "executed": 1692789701, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783998 + }, + { + "status": 0, + "executed": 1692784298 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785499 + }, + { + "status": 0, + "executed": 1692785799 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787300 + }, + { + "status": 0, + "executed": 1692787600 + }, + { + "status": 0, + "executed": 1692787900 + }, + { + "status": 0, + "executed": 1692788201 + }, + { + "status": 0, + "executed": 1692788501 + }, + { + "status": 0, + "executed": 1692788801 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789701 + } + ], + "issued": 1692789701, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae27 ingressOctets=10587182144041,egressOctets=739623459533277,ingressErrors=1,egressErrors=3,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789701, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae27", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "650f557d-821c-4d22-a8f1-331e2ee5ae2f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae27.100 1211", + "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, + "duration": 0.351384228, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae27.100 ingressOctets=2727850596705,egressOctets=4697833447164,ingressErrors=0,egressErrors=0,ingressOctetsv6=1271381850077,egressOctetsv6=2212433203882,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae27.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f8853d6b-3a03-436e-b44e-fd3b99532414", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae27.111 645", + "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, + "duration": 0.365254189, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae27.111 ingressOctets=7667162688220,egressOctets=647871438362813,ingressErrors=0,egressErrors=0,ingressOctetsv6=6391192852046,egressOctetsv6=577944802917868,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae27.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fb643d7d-fe1f-4ee3-99bf-fd8f91688560", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae27.333 1210", + "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, + "duration": 0.377945014, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae27.333 ingressOctets=192168842405,egressOctets=87053838642620,ingressErrors=0,egressErrors=0,ingressOctetsv6=175285782625,egressOctetsv6=662302062559,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae27.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ce8bbb5c-135a-4e7e-a6d3-f2ba68a6e6d5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae29 762", + "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, + "duration": 0.478562003, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783426 + }, + { + "status": 0, + "executed": 1692783726 + }, + { + "status": 0, + "executed": 1692784026 + }, + { + "status": 0, + "executed": 1692784326 + }, + { + "status": 0, + "executed": 1692784627 + }, + { + "status": 0, + "executed": 1692784927 + }, + { + "status": 0, + "executed": 1692785227 + }, + { + "status": 0, + "executed": 1692785527 + }, + { + "status": 0, + "executed": 1692785827 + }, + { + "status": 0, + "executed": 1692786128 + }, + { + "status": 0, + "executed": 1692786428 + }, + { + "status": 0, + "executed": 1692786728 + }, + { + "status": 0, + "executed": 1692787028 + }, + { + "status": 0, + "executed": 1692787329 + }, + { + "status": 0, + "executed": 1692787629 + }, + { + "status": 0, + "executed": 1692787929 + }, + { + "status": 0, + "executed": 1692788229 + }, + { + "status": 0, + "executed": 1692788529 + }, + { + "status": 0, + "executed": 1692788830 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae29 ingressOctets=5067580399637746,egressOctets=2179017463007604,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=16903684\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae29", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "88ff9ad0-502a-4130-9196-0f5c616b53cb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae29.0 1208", + "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, + "duration": 0.404289905, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783511 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785012 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae29.0 ingressOctets=5067628134344180,egressOctets=2179023407980085,ingressErrors=0,egressErrors=0,ingressOctetsv6=228523585943607,egressOctetsv6=107547281390759,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae29.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9201c41b-0e7a-40ce-91ed-116adc0831d2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae3 653", + "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, + "duration": 0.373951676, + "executed": 1692789707, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786408 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789107 + }, + { + "status": 0, + "executed": 1692789407 + }, + { + "status": 0, + "executed": 1692789707 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae3 ingressOctets=12466594255974867,egressOctets=33725548788138083,ingressErrors=116,egressErrors=48,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789707, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cd2d1071-8760-45d3-816c-9d3ece768f35", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae3.0 718", + "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, + "duration": 0.387298615, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786420 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788822 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789722, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae3.0 ingressOctets=12466598706583087,egressOctets=33725574323998562,ingressErrors=0,egressErrors=0,ingressOctetsv6=690816268347994,egressOctetsv6=1939298363743124,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "46d79147-ad51-4484-9d19-6dd96f867b2b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30 763", + "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, + "duration": 0.432466875, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30 ingressOctets=563120947318029,egressOctets=293507392561852,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cf2985ae-f1e8-4520-9507-9075f923fb28", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.2001 895", + "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, + "duration": 0.378505841, + "executed": 1692789682, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786381 + }, + { + "status": 0, + "executed": 1692786681 + }, + { + "status": 0, + "executed": 1692786981 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788482 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789682 + } + ], + "issued": 1692789682, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.2001 ingressOctets=117180437164191,egressOctets=32849243948624,ingressErrors=0,egressErrors=0,ingressOctetsv6=9451554801812,egressOctetsv6=2411713062296,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789682, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.2001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6b0d5b63-c0f9-42de-afbb-4d55cab94110", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789683 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3000 869", + "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, + "duration": 0.385103064, + "executed": 1692789424, + "history": [ + { + "status": 0, + "executed": 1692783420 + }, + { + "status": 0, + "executed": 1692783720 + }, + { + "status": 0, + "executed": 1692784020 + }, + { + "status": 0, + "executed": 1692784320 + }, + { + "status": 0, + "executed": 1692784621 + }, + { + "status": 0, + "executed": 1692784921 + }, + { + "status": 0, + "executed": 1692785221 + }, + { + "status": 0, + "executed": 1692785521 + }, + { + "status": 0, + "executed": 1692785821 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786422 + }, + { + "status": 0, + "executed": 1692786722 + }, + { + "status": 0, + "executed": 1692787022 + }, + { + "status": 0, + "executed": 1692787323 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787923 + }, + { + "status": 0, + "executed": 1692788223 + }, + { + "status": 0, + "executed": 1692788523 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789124 + }, + { + "status": 0, + "executed": 1692789424 + } + ], + "issued": 1692789424, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.3000 ingressOctets=445446283801587,egressOctets=260365935442898,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789424, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.3000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0fa8f989-bf78-4a78-9964-bca066edc8b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789425 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3001 520", + "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, + "duration": 0.417912645, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.3001 ingressOctets=502631,egressOctets=3190147928,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.3001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3b7bbaed-a60f-4f67-ac83-52b391ed3041", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3002 1394", + "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, + "duration": 0.384157581, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786392 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.3002 ingressOctets=5421996839,egressOctets=13090820534,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.3002", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "18078a72-75ab-4cdf-93f5-3412203b5b60", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3003 1395", + "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, + "duration": 0.404636718, + "executed": 1692789697, + "history": [ + { + "status": 0, + "executed": 1692783694 + }, + { + "status": 0, + "executed": 1692783994 + }, + { + "status": 0, + "executed": 1692784294 + }, + { + "status": 0, + "executed": 1692784595 + }, + { + "status": 0, + "executed": 1692784895 + }, + { + "status": 0, + "executed": 1692785195 + }, + { + "status": 0, + "executed": 1692785495 + }, + { + "status": 0, + "executed": 1692785795 + }, + { + "status": 0, + "executed": 1692786096 + }, + { + "status": 0, + "executed": 1692786396 + }, + { + "status": 0, + "executed": 1692786696 + }, + { + "status": 0, + "executed": 1692786996 + }, + { + "status": 0, + "executed": 1692787296 + }, + { + "status": 0, + "executed": 1692787596 + }, + { + "status": 0, + "executed": 1692787896 + }, + { + "status": 0, + "executed": 1692788196 + }, + { + "status": 0, + "executed": 1692788497 + }, + { + "status": 0, + "executed": 1692788797 + }, + { + "status": 0, + "executed": 1692789097 + }, + { + "status": 0, + "executed": 1692789397 + }, + { + "status": 0, + "executed": 1692789697 + } + ], + "issued": 1692789697, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.3003 ingressOctets=2969330963,egressOctets=13085289262,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789697, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.3003", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c10fd257-5acc-490f-a5cc-3b1889dccc99", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789697 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3004 1401", + "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, + "duration": 0.378132885, + "executed": 1692789710, + "history": [ + { + "status": 0, + "executed": 1692783705 + }, + { + "status": 0, + "executed": 1692784006 + }, + { + "status": 0, + "executed": 1692784306 + }, + { + "status": 0, + "executed": 1692784606 + }, + { + "status": 0, + "executed": 1692784906 + }, + { + "status": 0, + "executed": 1692785206 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785807 + }, + { + "status": 0, + "executed": 1692786107 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786709 + }, + { + "status": 0, + "executed": 1692787009 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788210 + }, + { + "status": 0, + "executed": 1692788510 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789710 + } + ], + "issued": 1692789710, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.3004 ingressOctets=6429376070,egressOctets=16223830995,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789710, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.3004", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e9a7119b-bb80-4d6b-8804-e1901ff3e19c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789711 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3005 1232", + "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, + "duration": 0.513438604, + "executed": 1692789434, + "history": [ + { + "status": 0, + "executed": 1692783431 + }, + { + "status": 0, + "executed": 1692783731 + }, + { + "status": 0, + "executed": 1692784031 + }, + { + "status": 0, + "executed": 1692784331 + }, + { + "status": 0, + "executed": 1692784631 + }, + { + "status": 0, + "executed": 1692784931 + }, + { + "status": 0, + "executed": 1692785231 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785832 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786733 + }, + { + "status": 0, + "executed": 1692787033 + }, + { + "status": 0, + "executed": 1692787333 + }, + { + "status": 0, + "executed": 1692787633 + }, + { + "status": 0, + "executed": 1692787934 + }, + { + "status": 0, + "executed": 1692788234 + }, + { + "status": 0, + "executed": 1692788534 + }, + { + "status": 0, + "executed": 1692788834 + }, + { + "status": 0, + "executed": 1692789134 + }, + { + "status": 0, + "executed": 1692789434 + } + ], + "issued": 1692789434, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.3005 ingressOctets=302459404748,egressOctets=12900641936,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789434, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.3005", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7ce633ca-c02e-4e84-b8dd-b448d88065f6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3006 1275", + "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, + "duration": 0.40280532, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.3006 ingressOctets=269210618,egressOctets=3245328621,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.3006", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7cbc8aed-17e0-4c47-8d38-771cfe33681c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3007 1292", + "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, + "duration": 0.377218756, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.3007 ingressOctets=88991472443,egressOctets=72945241929,ingressErrors=0,egressErrors=0,ingressOctetsv6=17112376185,egressOctetsv6=13767140650,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.3007", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "039b7694-545a-4b8f-b39c-1735317fbd3a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3008 1321", + "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, + "duration": 0.404967864, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.3008 ingressOctets=583393782,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.3008", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9c45c91d-27a2-43db-87f0-78ac6a9e8bc6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.3015 1083", + "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, + "duration": 0.33805121, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784762 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785363 + }, + { + "status": 0, + "executed": 1692785663 + }, + { + "status": 0, + "executed": 1692785963 + }, + { + "status": 0, + "executed": 1692786263 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786864 + }, + { + "status": 0, + "executed": 1692787164 + }, + { + "status": 0, + "executed": 1692787464 + }, + { + "status": 0, + "executed": 1692787765 + }, + { + "status": 0, + "executed": 1692788065 + }, + { + "status": 0, + "executed": 1692788365 + }, + { + "status": 0, + "executed": 1692788666 + }, + { + "status": 0, + "executed": 1692788966 + }, + { + "status": 0, + "executed": 1692789266 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789566, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.3015 ingressOctets=241473845,egressOctets=294000093,ingressErrors=0,egressErrors=0,ingressOctetsv6=126176,egressOctetsv6=104,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 10047, + "occurrences_watermark": 10047, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.3015", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "db529eb5-a86d-43ad-bd29-4ebdf7112bf1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3349, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae30.991 1249", + "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, + "duration": 0.438281534, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae30.991 ingressOctets=74437449049,egressOctets=98698035253,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae30.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "05a2071c-8952-4168-8f54-d63647d53a05", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae31 1007", + "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, + "duration": 0.4191671, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783705 + }, + { + "status": 0, + "executed": 1692784005 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784606 + }, + { + "status": 0, + "executed": 1692784906 + }, + { + "status": 0, + "executed": 1692785206 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786107 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae31 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae31", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e12efe23-2cc4-4378-953c-d0d035f4cfaf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae32 820", + "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, + "duration": 0.380554864, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae32 ingressOctets=5012321389287049,egressOctets=1812432978945452,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=11964740\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae32", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e3782d26-02ec-4575-a253-dc52424b39c8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae32.0 824", + "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, + "duration": 0.420512622, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae32.0 ingressOctets=5012321230798267,egressOctets=1812432481554894,ingressErrors=0,egressErrors=0,ingressOctetsv6=38317538507557,egressOctetsv6=41827123244184,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae32.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "287c47c9-fc25-4aff-9a21-dd11b7325564", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae33 981", + "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, + "duration": 0.426672082, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae33 ingressOctets=4354031730849337,egressOctets=8583762499700590,ingressErrors=1854,egressErrors=0,ingressDiscards=0,egressDiscards=3401716\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae33", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "36f5fd13-2aed-4db1-b414-d2cca25399a4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae33.111 1055", + "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, + "duration": 0.640511902, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae33.111 ingressOctets=3053783313594155,egressOctets=1492106937506217,ingressErrors=0,egressErrors=0,ingressOctetsv6=504921577497298,egressOctetsv6=601557084407528,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae33.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fdfee8e5-0561-4eca-a3a6-284eda9053f3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae33.200 996", + "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, + "duration": 0.429493452, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae33.200 ingressOctets=1300295063603680,egressOctets=7091658941310719,ingressErrors=0,egressErrors=0,ingressOctetsv6=131974545446457,egressOctetsv6=85995073772086,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae33.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6ef32073-bd6b-47ba-94be-e8c271ac28fd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae34 1195", + "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, + "duration": 0.393747851, + "executed": 1692789710, + "history": [ + { + "status": 0, + "executed": 1692783706 + }, + { + "status": 0, + "executed": 1692784006 + }, + { + "status": 0, + "executed": 1692784306 + }, + { + "status": 0, + "executed": 1692784606 + }, + { + "status": 0, + "executed": 1692784906 + }, + { + "status": 0, + "executed": 1692785206 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785807 + }, + { + "status": 0, + "executed": 1692786107 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786709 + }, + { + "status": 0, + "executed": 1692787009 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788210 + }, + { + "status": 0, + "executed": 1692788510 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789710 + } + ], + "issued": 1692789710, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae34 ingressOctets=856836514,egressOctets=353210418,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789710, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae34", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7bea37fa-d3ec-4d59-a81a-1ebf16a1f128", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae35 1217", + "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, + "duration": 0.360898088, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae35 ingressOctets=604737287789901,egressOctets=3062886998480874,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae35", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "23e2c1a6-675e-4040-9690-b02171d33e46", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae35.0 1218", + "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, + "duration": 0.360375073, + "executed": 1692789508, + "history": [ + { + "status": 0, + "executed": 1692783504 + }, + { + "status": 0, + "executed": 1692783804 + }, + { + "status": 0, + "executed": 1692784104 + }, + { + "status": 0, + "executed": 1692784404 + }, + { + "status": 0, + "executed": 1692784704 + }, + { + "status": 0, + "executed": 1692785005 + }, + { + "status": 0, + "executed": 1692785305 + }, + { + "status": 0, + "executed": 1692785605 + }, + { + "status": 0, + "executed": 1692785905 + }, + { + "status": 0, + "executed": 1692786206 + }, + { + "status": 0, + "executed": 1692786506 + }, + { + "status": 0, + "executed": 1692786806 + }, + { + "status": 0, + "executed": 1692787106 + }, + { + "status": 0, + "executed": 1692787407 + }, + { + "status": 0, + "executed": 1692787707 + }, + { + "status": 0, + "executed": 1692788008 + }, + { + "status": 0, + "executed": 1692788308 + }, + { + "status": 0, + "executed": 1692788608 + }, + { + "status": 0, + "executed": 1692788908 + }, + { + "status": 0, + "executed": 1692789208 + }, + { + "status": 0, + "executed": 1692789508 + } + ], + "issued": 1692789508, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae35.0 ingressOctets=604737604906702,egressOctets=3062887647084462,ingressErrors=0,egressErrors=0,ingressOctetsv6=4821250889,egressOctetsv6=153296660,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789508, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae35.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "338c09cd-9941-495c-85d0-f309e83716a0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789509 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae36 1224", + "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, + "duration": 1.318634096, + "executed": 1692789522, + "history": [ + { + "status": 0, + "executed": 1692783514 + }, + { + "status": 0, + "executed": 1692783814 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785015 + }, + { + "status": 0, + "executed": 1692785315 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787417 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788018 + }, + { + "status": 0, + "executed": 1692788318 + }, + { + "status": 0, + "executed": 1692788618 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789522 + } + ], + "issued": 1692789521, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae36 ingressOctets=4599535469467217,egressOctets=16562132648,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789522, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae36", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6b16e6bd-701a-4e33-82d7-7ed8c414e5a2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789523 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae36.0 1225", + "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, + "duration": 0.425938373, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae36.0 ingressOctets=4599536505486978,egressOctets=16542101871,ingressErrors=0,egressErrors=0,ingressOctetsv6=75617457057241,egressOctetsv6=262984034,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae36.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f597d3d9-2658-41a0-95fe-06686f2a0977", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae37 1280", + "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, + "duration": 0.378370647, + "executed": 1692789541, + "history": [ + { + "status": 0, + "executed": 1692783537 + }, + { + "status": 0, + "executed": 1692783838 + }, + { + "status": 0, + "executed": 1692784138 + }, + { + "status": 0, + "executed": 1692784438 + }, + { + "status": 0, + "executed": 1692784738 + }, + { + "status": 0, + "executed": 1692785038 + }, + { + "status": 0, + "executed": 1692785338 + }, + { + "status": 0, + "executed": 1692785638 + }, + { + "status": 0, + "executed": 1692785938 + }, + { + "status": 0, + "executed": 1692786239 + }, + { + "status": 0, + "executed": 1692786539 + }, + { + "status": 0, + "executed": 1692786839 + }, + { + "status": 0, + "executed": 1692787139 + }, + { + "status": 0, + "executed": 1692787440 + }, + { + "status": 0, + "executed": 1692787740 + }, + { + "status": 0, + "executed": 1692788041 + }, + { + "status": 0, + "executed": 1692788341 + }, + { + "status": 0, + "executed": 1692788641 + }, + { + "status": 0, + "executed": 1692788941 + }, + { + "status": 0, + "executed": 1692789241 + }, + { + "status": 0, + "executed": 1692789541 + } + ], + "issued": 1692789541, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae37 ingressOctets=638646217929663,egressOctets=1206991619465930,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789541, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae37", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d23e4da2-648d-4497-93d3-1346397c2d8d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789542 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae37.0 1281", + "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, + "duration": 0.404931032, + "executed": 1692789681, + "history": [ + { + "status": 0, + "executed": 1692783678 + }, + { + "status": 0, + "executed": 1692783978 + }, + { + "status": 0, + "executed": 1692784278 + }, + { + "status": 0, + "executed": 1692784578 + }, + { + "status": 0, + "executed": 1692784878 + }, + { + "status": 0, + "executed": 1692785178 + }, + { + "status": 0, + "executed": 1692785478 + }, + { + "status": 0, + "executed": 1692785779 + }, + { + "status": 0, + "executed": 1692786079 + }, + { + "status": 0, + "executed": 1692786379 + }, + { + "status": 0, + "executed": 1692786679 + }, + { + "status": 0, + "executed": 1692786979 + }, + { + "status": 0, + "executed": 1692787280 + }, + { + "status": 0, + "executed": 1692787580 + }, + { + "status": 0, + "executed": 1692787880 + }, + { + "status": 0, + "executed": 1692788180 + }, + { + "status": 0, + "executed": 1692788481 + }, + { + "status": 0, + "executed": 1692788781 + }, + { + "status": 0, + "executed": 1692789081 + }, + { + "status": 0, + "executed": 1692789381 + }, + { + "status": 0, + "executed": 1692789681 + } + ], + "issued": 1692789681, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae37.0 ingressOctets=638647759673678,egressOctets=1206997870012647,ingressErrors=0,egressErrors=0,ingressOctetsv6=4865932398943,egressOctetsv6=47667483126411,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789681, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae37.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b41848e4-917d-40db-9518-ca4359078dcb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae38 921", + "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, + "duration": 0.424396856, + "executed": 1692789541, + "history": [ + { + "status": 0, + "executed": 1692783537 + }, + { + "status": 0, + "executed": 1692783838 + }, + { + "status": 0, + "executed": 1692784138 + }, + { + "status": 0, + "executed": 1692784438 + }, + { + "status": 0, + "executed": 1692784738 + }, + { + "status": 0, + "executed": 1692785038 + }, + { + "status": 0, + "executed": 1692785338 + }, + { + "status": 0, + "executed": 1692785638 + }, + { + "status": 0, + "executed": 1692785938 + }, + { + "status": 0, + "executed": 1692786239 + }, + { + "status": 0, + "executed": 1692786539 + }, + { + "status": 0, + "executed": 1692786839 + }, + { + "status": 0, + "executed": 1692787139 + }, + { + "status": 0, + "executed": 1692787440 + }, + { + "status": 0, + "executed": 1692787740 + }, + { + "status": 0, + "executed": 1692788041 + }, + { + "status": 0, + "executed": 1692788341 + }, + { + "status": 0, + "executed": 1692788641 + }, + { + "status": 0, + "executed": 1692788941 + }, + { + "status": 0, + "executed": 1692789241 + }, + { + "status": 0, + "executed": 1692789541 + } + ], + "issued": 1692789541, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae38 ingressOctets=27497816558800,egressOctets=4103299322567,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789541, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae38", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1e90ff8a-411d-4ebd-8c53-2171cafd5a13", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789541 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae38.100 922", + "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, + "duration": 0.424229787, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae38.100 ingressOctets=4041242634,egressOctets=291972370653,ingressErrors=0,egressErrors=0,ingressOctetsv6=126595598,egressOctetsv6=521082504,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae38.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "abfd6da8-ed61-4d09-93fb-29317c37a7f0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae38.333 923", + "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, + "duration": 0.450135651, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae38.333 ingressOctets=27494000384266,egressOctets=3810949436236,ingressErrors=0,egressErrors=0,ingressOctetsv6=133305527,egressOctetsv6=521066704,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae38.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2afef7cf-5add-4bac-baa0-c9183493d849", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae40 1348", + "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, + "duration": 0.540135697, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789016 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789616, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae40 ingressOctets=1968930056738,egressOctets=24372794753237,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae40", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "96833bc0-df41-49b2-8f7d-8103a9343efd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae40.415 1366", + "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, + "duration": 0.419247507, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784518 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786920 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae40.415 ingressOctets=1630877890590,egressOctets=7844597515170,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae40.415", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "342d2d0a-6535-4671-964a-6683439e0226", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789623 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae40.416 827", + "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, + "duration": 0.378552178, + "executed": 1692789508, + "history": [ + { + "status": 0, + "executed": 1692783504 + }, + { + "status": 0, + "executed": 1692783804 + }, + { + "status": 0, + "executed": 1692784104 + }, + { + "status": 0, + "executed": 1692784404 + }, + { + "status": 0, + "executed": 1692784704 + }, + { + "status": 0, + "executed": 1692785005 + }, + { + "status": 0, + "executed": 1692785305 + }, + { + "status": 0, + "executed": 1692785605 + }, + { + "status": 0, + "executed": 1692785905 + }, + { + "status": 0, + "executed": 1692786206 + }, + { + "status": 0, + "executed": 1692786506 + }, + { + "status": 0, + "executed": 1692786806 + }, + { + "status": 0, + "executed": 1692787106 + }, + { + "status": 0, + "executed": 1692787407 + }, + { + "status": 0, + "executed": 1692787707 + }, + { + "status": 0, + "executed": 1692788008 + }, + { + "status": 0, + "executed": 1692788308 + }, + { + "status": 0, + "executed": 1692788608 + }, + { + "status": 0, + "executed": 1692788908 + }, + { + "status": 0, + "executed": 1692789208 + }, + { + "status": 0, + "executed": 1692789508 + } + ], + "issued": 1692789508, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae40.416 ingressOctets=112909959,egressOctets=333971389,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789508, + "occurrences": 15548, + "occurrences_watermark": 15548, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae40.416", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "efc7704a-be62-43ba-8ba4-add8adfa1dba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789509 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae41 1585", + "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, + "duration": 0.379799458, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae41 ingressOctets=24320269162,egressOctets=19890278113,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae41", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2c1d7daf-8e84-4269-9c91-94fae1a05748", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae41.0 1587", + "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, + "duration": 0.427568497, + "executed": 1692789629, + "history": [ + { + "status": 0, + "executed": 1692783625 + }, + { + "status": 0, + "executed": 1692783925 + }, + { + "status": 0, + "executed": 1692784225 + }, + { + "status": 0, + "executed": 1692784525 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786627 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789629 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae41.0 ingressOctets=10287995643,egressOctets=8281206115,ingressErrors=0,egressErrors=0,ingressOctetsv6=3172568552,egressOctetsv6=5976468343,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789629, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae41.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "07c9dae0-9cd1-4d37-84b3-dfd8ab55e109", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae41.300 970", + "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, + "duration": 0.494167023, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789016 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789616, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae41.300 ingressOctets=7610485935,egressOctets=4432230812,ingressErrors=0,egressErrors=0,ingressOctetsv6=75972869,egressOctetsv6=266245632,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae41.300", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f84a749d-2952-41b4-bcd8-f1dc0529da24", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae42 1586", + "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, + "duration": 0.42912225, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae42 ingressOctets=57210572,egressOctets=291770080,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae42", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "59311c4d-173e-40ba-8969-f512380e56d4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae42.0 1588", + "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, + "duration": 0.408317998, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783663 + }, + { + "status": 0, + "executed": 1692783963 + }, + { + "status": 0, + "executed": 1692784263 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785764 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786664 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787265 + }, + { + "status": 0, + "executed": 1692787565 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788466 + }, + { + "status": 0, + "executed": 1692788766 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789367 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae42.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae42.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "10c9c701-41b6-4987-8934-19f55e2fcba2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789667 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae42.300 974", + "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, + "duration": 0.406321231, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae42.300 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae42.300", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4030310a-727a-4e0a-aac5-4a0d09cd66d2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae43 1603", + "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, + "duration": 0.386332629, + "executed": 1692789701, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783998 + }, + { + "status": 0, + "executed": 1692784298 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785499 + }, + { + "status": 0, + "executed": 1692785799 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787300 + }, + { + "status": 0, + "executed": 1692787600 + }, + { + "status": 0, + "executed": 1692787900 + }, + { + "status": 0, + "executed": 1692788201 + }, + { + "status": 0, + "executed": 1692788501 + }, + { + "status": 0, + "executed": 1692788801 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789701 + } + ], + "issued": 1692789701, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae43 ingressOctets=4464126122,egressOctets=4897605566,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789701, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae43", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "52484c63-2e9c-4b0e-ac35-fb7462e3b703", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae43.100 1604", + "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, + "duration": 0.36971005, + "executed": 1692789647, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784541 + }, + { + "status": 0, + "executed": 1692784841 + }, + { + "status": 0, + "executed": 1692785141 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785742 + }, + { + "status": 0, + "executed": 1692786045 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786644 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787546 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789647 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae43.100 ingressOctets=788077654,egressOctets=1387422921,ingressErrors=0,egressErrors=0,ingressOctetsv6=2532443,egressOctetsv6=4531,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789647, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae43.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8fd52273-ff9b-4538-9101-95541c4d48d6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae43.200 1605", + "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, + "duration": 0.428864631, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae43.200 ingressOctets=1414545749,egressOctets=1358271252,ingressErrors=0,egressErrors=0,ingressOctetsv6=2674280,egressOctetsv6=949929,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae43.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c4786f99-9c18-4b35-a225-63bde0f04d25", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae44 1596", + "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, + "duration": 0.539793899, + "executed": 1692789657, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786655 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789657 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae44 ingressOctets=5618285568347362,egressOctets=1331732968059506,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=4187851\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789657, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae44", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c965ec47-1e35-47e6-9916-abb69151c6a0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae44.0 1597", + "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, + "duration": 0.508229106, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae44.0 ingressOctets=5524914190165410,egressOctets=1318250206863517,ingressErrors=0,egressErrors=0,ingressOctetsv6=110165512782706,egressOctetsv6=118636585639599,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae44.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5403b04e-dc46-41ae-a764-2d990c4d4cd1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae5 655", + "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, + "duration": 0.402258144, + "executed": 1692789677, + "history": [ + { + "status": 0, + "executed": 1692783673 + }, + { + "status": 0, + "executed": 1692783973 + }, + { + "status": 0, + "executed": 1692784273 + }, + { + "status": 0, + "executed": 1692784573 + }, + { + "status": 0, + "executed": 1692784873 + }, + { + "status": 0, + "executed": 1692785173 + }, + { + "status": 0, + "executed": 1692785473 + }, + { + "status": 0, + "executed": 1692785774 + }, + { + "status": 0, + "executed": 1692786074 + }, + { + "status": 0, + "executed": 1692786374 + }, + { + "status": 0, + "executed": 1692786674 + }, + { + "status": 0, + "executed": 1692786974 + }, + { + "status": 0, + "executed": 1692787275 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788176 + }, + { + "status": 0, + "executed": 1692788476 + }, + { + "status": 0, + "executed": 1692788776 + }, + { + "status": 0, + "executed": 1692789077 + }, + { + "status": 0, + "executed": 1692789377 + }, + { + "status": 0, + "executed": 1692789677 + } + ], + "issued": 1692789677, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae5 ingressOctets=27380822828865006,egressOctets=41520663553034549,ingressErrors=384,egressErrors=47,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789677, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "52bfea76-973b-43c8-9ead-4a362caf19fe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789677 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae5.0 814", + "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, + "duration": 0.427465588, + "executed": 1692789647, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784542 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785743 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786644 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787545 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789647 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae5.0 ingressOctets=27380605230590488,egressOctets=41520622463991423,ingressErrors=0,egressErrors=0,ingressOctetsv6=1673464239271332,egressOctetsv6=5199966862142532,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789647, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c9bf5fe2-f5fa-4caf-9a4f-fc9d3a757ef9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae7 1382", + "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, + "duration": 0.431252336, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae7 ingressOctets=152438591079865213,egressOctets=100834002773874384,ingressErrors=101,egressErrors=26,ingressDiscards=0,egressDiscards=207075\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 14322, + "occurrences_watermark": 14322, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d0bde872-fbfd-4934-99a7-71af72d87c72", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ae7.0 1383", + "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, + "duration": 0.520626968, + "executed": 1692789659, + "history": [ + { + "status": 0, + "executed": 1692783655 + }, + { + "status": 0, + "executed": 1692783955 + }, + { + "status": 0, + "executed": 1692784255 + }, + { + "status": 0, + "executed": 1692784556 + }, + { + "status": 0, + "executed": 1692784856 + }, + { + "status": 0, + "executed": 1692785156 + }, + { + "status": 0, + "executed": 1692785456 + }, + { + "status": 0, + "executed": 1692785756 + }, + { + "status": 0, + "executed": 1692786057 + }, + { + "status": 0, + "executed": 1692786357 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786957 + }, + { + "status": 0, + "executed": 1692787257 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787858 + }, + { + "status": 0, + "executed": 1692788158 + }, + { + "status": 0, + "executed": 1692788459 + }, + { + "status": 0, + "executed": 1692788759 + }, + { + "status": 0, + "executed": 1692789059 + }, + { + "status": 0, + "executed": 1692789359 + }, + { + "status": 0, + "executed": 1692789659 + } + ], + "issued": 1692789659, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae7.0 ingressOctets=152439025228994496,egressOctets=100834154515283344,ingressErrors=0,egressErrors=0,ingressOctetsv6=22367970055583409,egressOctetsv6=13627160226318780,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789659, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "88c2ec6a-f068-4863-b92a-edaa95a86d21", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789660 + }, + { + "check": { + "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, + "duration": 0.43556667, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784519 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786020 + }, + { + "status": 0, + "executed": 1692786320 + }, + { + "status": 0, + "executed": 1692786619 + }, + { + "status": 0, + "executed": 1692786920 + }, + { + "status": 0, + "executed": 1692787220 + }, + { + "status": 0, + "executed": 1692787521 + }, + { + "status": 0, + "executed": 1692787821 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae9 ingressOctets=696005967203789,egressOctets=914366971351149,ingressErrors=201,egressErrors=5,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1d59ee63-fce8-4f47-8f93-b2d02c4a8b49", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789623 + }, + { + "check": { + "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, + "duration": 0.85330914, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788167 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ae9.0 ingressOctets=696006164567858,egressOctets=914366676628925,ingressErrors=0,egressErrors=0,ingressOctetsv6=211422562619559,egressOctetsv6=76685865815629,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ae9.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4c570215-aa9e-48a5-956a-797268a73715", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net dsc.0 1222", + "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, + "duration": 0.329291075, + "executed": 1692789535, + "history": [ + { + "status": 0, + "executed": 1692783531 + }, + { + "status": 0, + "executed": 1692783831 + }, + { + "status": 0, + "executed": 1692784131 + }, + { + "status": 0, + "executed": 1692784431 + }, + { + "status": 0, + "executed": 1692784731 + }, + { + "status": 0, + "executed": 1692785032 + }, + { + "status": 0, + "executed": 1692785332 + }, + { + "status": 0, + "executed": 1692785632 + }, + { + "status": 0, + "executed": 1692785932 + }, + { + "status": 0, + "executed": 1692786233 + }, + { + "status": 0, + "executed": 1692786533 + }, + { + "status": 0, + "executed": 1692786833 + }, + { + "status": 0, + "executed": 1692787133 + }, + { + "status": 0, + "executed": 1692787433 + }, + { + "status": 0, + "executed": 1692787734 + }, + { + "status": 0, + "executed": 1692788034 + }, + { + "status": 0, + "executed": 1692788334 + }, + { + "status": 0, + "executed": 1692788634 + }, + { + "status": 0, + "executed": 1692788935 + }, + { + "status": 0, + "executed": 1692789235 + }, + { + "status": 0, + "executed": 1692789535 + } + ], + "issued": 1692789534, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=dsc.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789535, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-dsc.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e2787054-d810-4b0d-8eb9-fa3187ff4856", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789535 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-11/0/2 1566", + "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, + "duration": 0.46296948, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789016 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789616, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-11/0/2 ingressOctets=15793851207202445,egressOctets=28806884171116194,ingressErrors=0,egressErrors=2,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-11-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8fdd4237-6d1b-4f92-b0ed-a4047c693d92", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-11/0/5 1568", + "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, + "duration": 0.505485994, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784116 + }, + { + "status": 0, + "executed": 1692784416 + }, + { + "status": 0, + "executed": 1692784716 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786217 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789522, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-11/0/5 ingressOctets=16118065874738339,egressOctets=28804944969202721,ingressErrors=8,egressErrors=3,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-11-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e0ccd1ac-6597-4982-bd02-b7492d5a4a69", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789523 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-11/1/2 1570", + "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, + "duration": 0.375180698, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-11/1/2 ingressOctets=16089058051144676,egressOctets=28809351829448156,ingressErrors=463,egressErrors=4,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-11-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "709bc79f-4429-4bb6-b08b-5bf15be4ce6f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-11/1/5 1572", + "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, + "duration": 0.414546682, + "executed": 1692789665, + "history": [ + { + "status": 0, + "executed": 1692783662 + }, + { + "status": 0, + "executed": 1692783962 + }, + { + "status": 0, + "executed": 1692784262 + }, + { + "status": 0, + "executed": 1692784562 + }, + { + "status": 0, + "executed": 1692784862 + }, + { + "status": 0, + "executed": 1692785162 + }, + { + "status": 0, + "executed": 1692785462 + }, + { + "status": 0, + "executed": 1692785763 + }, + { + "status": 0, + "executed": 1692786063 + }, + { + "status": 0, + "executed": 1692786363 + }, + { + "status": 0, + "executed": 1692786663 + }, + { + "status": 0, + "executed": 1692786963 + }, + { + "status": 0, + "executed": 1692787264 + }, + { + "status": 0, + "executed": 1692787564 + }, + { + "status": 0, + "executed": 1692787864 + }, + { + "status": 0, + "executed": 1692788164 + }, + { + "status": 0, + "executed": 1692788465 + }, + { + "status": 0, + "executed": 1692788765 + }, + { + "status": 0, + "executed": 1692789065 + }, + { + "status": 0, + "executed": 1692789366 + }, + { + "status": 0, + "executed": 1692789665 + } + ], + "issued": 1692789665, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-11/1/5 ingressOctets=4464109619,egressOctets=4897656305,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789665, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-11-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "71955d6e-90bb-4436-ada5-c9fa46fa3919", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789666 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-4/0/2 716", + "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, + "duration": 0.397639938, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-4/0/2 ingressOctets=28019882414170146,egressOctets=11138435451390304,ingressErrors=60764,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-4-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9b2828b6-3335-49a0-8b9c-a82695e84515", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-4/0/5 723", + "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, + "duration": 0.396997159, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-4/0/5 ingressOctets=2661179658814929,egressOctets=3930181666528660,ingressErrors=362150,egressErrors=15,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-4-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6f3497e2-f85a-4c0e-9bbc-6f81e3a508fa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-4/1/2 724", + "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, + "duration": 0.441584837, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783844 + }, + { + "status": 0, + "executed": 1692784144 + }, + { + "status": 0, + "executed": 1692784444 + }, + { + "status": 0, + "executed": 1692784744 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787446 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788047 + }, + { + "status": 0, + "executed": 1692788347 + }, + { + "status": 0, + "executed": 1692788647 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-4/1/2 ingressOctets=696004646073380,egressOctets=914366972700442,ingressErrors=201,egressErrors=5,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-4-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0b6aadc3-4dab-4164-8b8e-6fcef61bdece", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-4/1/5 725", + "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, + "duration": 0.399295452, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783844 + }, + { + "status": 0, + "executed": 1692784144 + }, + { + "status": 0, + "executed": 1692784444 + }, + { + "status": 0, + "executed": 1692784744 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787446 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788047 + }, + { + "status": 0, + "executed": 1692788347 + }, + { + "status": 0, + "executed": 1692788647 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789548, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-4/1/5 ingressOctets=18830372332744654,egressOctets=26377890886336886,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-4-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "057824b0-b5a9-4302-a387-deff9fc5f6bc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-5/0/2 661", + "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, + "duration": 0.420900921, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-5/0/2 ingressOctets=18702768501223356,egressOctets=26375501065885062,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-5-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c5905cc4-d9e5-4aaa-903e-f0ee962128ad", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-5/0/5 719", + "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, + "duration": 0.366375887, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783549 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785050 + }, + { + "status": 0, + "executed": 1692785350 + }, + { + "status": 0, + "executed": 1692785650 + }, + { + "status": 0, + "executed": 1692785950 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786551 + }, + { + "status": 0, + "executed": 1692786851 + }, + { + "status": 0, + "executed": 1692787151 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787752 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-5/0/5 ingressOctets=21190735183663050,egressOctets=29097935937498041,ingressErrors=2,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-5-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d55920b2-8d9d-4a71-b73d-f0bc6ee04ee7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-5/1/2 1161", + "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, + "duration": 0.391091202, + "executed": 1692789707, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789107 + }, + { + "status": 0, + "executed": 1692789407 + }, + { + "status": 0, + "executed": 1692789707 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-5/1/2 ingressOctets=10587182145130,egressOctets=739623472078244,ingressErrors=1,egressErrors=3,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789707, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-5-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a2d4f348-2414-4299-b488-636f59aec525", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-5/1/5 1162", + "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, + "duration": 0.487166291, + "executed": 1692789659, + "history": [ + { + "status": 0, + "executed": 1692783655 + }, + { + "status": 0, + "executed": 1692783955 + }, + { + "status": 0, + "executed": 1692784255 + }, + { + "status": 0, + "executed": 1692784556 + }, + { + "status": 0, + "executed": 1692784856 + }, + { + "status": 0, + "executed": 1692785156 + }, + { + "status": 0, + "executed": 1692785456 + }, + { + "status": 0, + "executed": 1692785756 + }, + { + "status": 0, + "executed": 1692786057 + }, + { + "status": 0, + "executed": 1692786357 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786957 + }, + { + "status": 0, + "executed": 1692787257 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787858 + }, + { + "status": 0, + "executed": 1692788158 + }, + { + "status": 0, + "executed": 1692788459 + }, + { + "status": 0, + "executed": 1692788759 + }, + { + "status": 0, + "executed": 1692789059 + }, + { + "status": 0, + "executed": 1692789359 + }, + { + "status": 0, + "executed": 1692789659 + } + ], + "issued": 1692789659, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-5/1/5 ingressOctets=13687877787869190,egressOctets=20753788521069630,ingressErrors=39,egressErrors=31,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789659, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-5-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c77af51-1053-4c03-9340-66fe4df3c4a0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789660 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-7/0/2 1304", + "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, + "duration": 0.546868177, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786217 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789522, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-7/0/2 ingressOctets=12466532561821459,egressOctets=33725227236644527,ingressErrors=116,egressErrors=48,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-7-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1db97c1f-8e50-47ad-b69a-0bbeb940eefb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789523 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-7/0/5 1305", + "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, + "duration": 1.8884333070000001, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-7/0/5 ingressOctets=51859713683095637,egressOctets=51427134388036965,ingressErrors=27,egressErrors=8,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-7-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8654e983-b850-473e-86cc-9b7350dae5ea", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789520 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-7/1/2 1306", + "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, + "duration": 0.346424984, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787434 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788035 + }, + { + "status": 0, + "executed": 1692788335 + }, + { + "status": 0, + "executed": 1692788635 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789535, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-7/1/2 ingressOctets=50263655528718326,egressOctets=51436514553572565,ingressErrors=10,egressErrors=9,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-7-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "94553b97-48f7-4744-8dc4-e6c1b3202cc6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789536 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-7/1/5 1307", + "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, + "duration": 0.361697291, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-7/1/5 ingressOctets=51210563639595437,egressOctets=51441106567149916,ingressErrors=22,egressErrors=8,ingressDiscards=0,egressDiscards=5467\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-7-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "408e4ae2-4a6d-44ad-874a-d19183087162", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-8/0/2 1362", + "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, + "duration": 0.385404725, + "executed": 1692789675, + "history": [ + { + "status": 0, + "executed": 1692783671 + }, + { + "status": 0, + "executed": 1692783971 + }, + { + "status": 0, + "executed": 1692784271 + }, + { + "status": 0, + "executed": 1692784572 + }, + { + "status": 0, + "executed": 1692784872 + }, + { + "status": 0, + "executed": 1692785172 + }, + { + "status": 0, + "executed": 1692785472 + }, + { + "status": 0, + "executed": 1692785772 + }, + { + "status": 0, + "executed": 1692786073 + }, + { + "status": 0, + "executed": 1692786373 + }, + { + "status": 0, + "executed": 1692786672 + }, + { + "status": 0, + "executed": 1692786973 + }, + { + "status": 0, + "executed": 1692787273 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787874 + }, + { + "status": 0, + "executed": 1692788174 + }, + { + "status": 0, + "executed": 1692788475 + }, + { + "status": 0, + "executed": 1692788775 + }, + { + "status": 0, + "executed": 1692789075 + }, + { + "status": 0, + "executed": 1692789376 + }, + { + "status": 0, + "executed": 1692789675 + } + ], + "issued": 1692789675, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-8/0/2 ingressOctets=27762025875900262,egressOctets=11146931695087181,ingressErrors=348,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789675, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-8-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "53901917-aea5-45a7-b65e-afa21413284e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789676 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-8/0/5 1361", + "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, + "duration": 0.394588219, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783511 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785012 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-8/0/5 ingressOctets=50807580657765972,egressOctets=33619532523035554,ingressErrors=38,egressErrors=8,ingressDiscards=0,egressDiscards=173226\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-8-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3c0c2660-0cf5-43b9-9a2a-6e6b8927cf4d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-8/1/2 1363", + "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, + "duration": 0.471057317, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-8/1/2 ingressOctets=50819738363039663,egressOctets=33611581576216893,ingressErrors=37,egressErrors=9,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-8-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "697ffa52-cfa1-4e3c-ac4c-f1919afaecc6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net et-8/1/5 1364", + "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, + "duration": 0.369716284, + "executed": 1692789516, + "history": [ + { + "status": 0, + "executed": 1692783511 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785012 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785613 + }, + { + "status": 0, + "executed": 1692785913 + }, + { + "status": 0, + "executed": 1692786214 + }, + { + "status": 0, + "executed": 1692786514 + }, + { + "status": 0, + "executed": 1692786814 + }, + { + "status": 0, + "executed": 1692787114 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787715 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788916 + }, + { + "status": 0, + "executed": 1692789216 + }, + { + "status": 0, + "executed": 1692789516 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=et-8/1/5 ingressOctets=50810785788568627,egressOctets=33602726687065384,ingressErrors=26,egressErrors=9,ingressDiscards=0,egressDiscards=33849\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789516, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-et-8-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "41cc50e9-a303-4450-b153-c5094dfae995", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/0 606", + "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, + "duration": 0.515907559, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785629 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4907534b-cb11-4559-b57b-ea290205a9fa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/1 607", + "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, + "duration": 0.410018333, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/1 ingressOctets=819279,egressOctets=313663163,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1a43b6f3-be6b-40e5-8fcb-3babec04cd7b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/2 608", + "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, + "duration": 0.435415376, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/2 ingressOctets=3417379970,egressOctets=34589104089,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2d374cbf-b1a8-4dd2-8066-e903c19c3e39", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/2.132 857", + "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, + "duration": 0.501871133, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785630 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/2.132 ingressOctets=67195011,egressOctets=126095128,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-2.132", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3a293587-14fd-4504-ac80-2be9f6088b90", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/3 609", + "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, + "duration": 0.391207429, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/3 ingressOctets=229091703,egressOctets=500340381,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "45c86d22-694e-4854-91ee-b93853db3a85", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/3.0 1330", + "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, + "duration": 0.420865572, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/3.0 ingressOctets=229087803,egressOctets=547492953,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 14321, + "occurrences_watermark": 14321, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f8fdb920-775c-4d38-9aa6-f9a8f043d0fb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/4 610", + "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, + "duration": 0.338453, + "executed": 1692789707, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789107 + }, + { + "status": 0, + "executed": 1692789407 + }, + { + "status": 0, + "executed": 1692789707 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789707, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5418a884-bd3e-4f3e-8171-dacfe94c4154", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5 612", + "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, + "duration": 0.342136676, + "executed": 1692789697, + "history": [ + { + "status": 0, + "executed": 1692783694 + }, + { + "status": 0, + "executed": 1692783994 + }, + { + "status": 0, + "executed": 1692784294 + }, + { + "status": 0, + "executed": 1692784595 + }, + { + "status": 0, + "executed": 1692784895 + }, + { + "status": 0, + "executed": 1692785195 + }, + { + "status": 0, + "executed": 1692785495 + }, + { + "status": 0, + "executed": 1692785795 + }, + { + "status": 0, + "executed": 1692786096 + }, + { + "status": 0, + "executed": 1692786396 + }, + { + "status": 0, + "executed": 1692786696 + }, + { + "status": 0, + "executed": 1692786996 + }, + { + "status": 0, + "executed": 1692787296 + }, + { + "status": 0, + "executed": 1692787596 + }, + { + "status": 0, + "executed": 1692787896 + }, + { + "status": 0, + "executed": 1692788196 + }, + { + "status": 0, + "executed": 1692788497 + }, + { + "status": 0, + "executed": 1692788797 + }, + { + "status": 0, + "executed": 1692789097 + }, + { + "status": 0, + "executed": 1692789397 + }, + { + "status": 0, + "executed": 1692789697 + } + ], + "issued": 1692789697, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/5 ingressOctets=161547539599,egressOctets=20554373593,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789697, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fe26455f-a15b-43f8-a542-8800f6fd9002", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789697 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.102 1370", + "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, + "duration": 0.378561695, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/5.102 ingressOctets=2052040479,egressOctets=821372466,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-5.102", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "265f8d2b-3253-42e5-afc6-a50202507147", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.202 1373", + "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, + "duration": 0.442786495, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/5.202 ingressOctets=2051627130,egressOctets=821249280,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 15547, + "occurrences_watermark": 15547, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-5.202", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7470e534-275a-44bb-a7bf-c0f26531220e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.3005 1236", + "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, + "duration": 0.389751498, + "executed": 1692789446, + "history": [ + { + "status": 0, + "executed": 1692783441 + }, + { + "status": 0, + "executed": 1692783741 + }, + { + "status": 0, + "executed": 1692784042 + }, + { + "status": 0, + "executed": 1692784342 + }, + { + "status": 0, + "executed": 1692784642 + }, + { + "status": 0, + "executed": 1692784942 + }, + { + "status": 0, + "executed": 1692785243 + }, + { + "status": 0, + "executed": 1692785543 + }, + { + "status": 0, + "executed": 1692785843 + }, + { + "status": 0, + "executed": 1692786144 + }, + { + "status": 0, + "executed": 1692786444 + }, + { + "status": 0, + "executed": 1692786744 + }, + { + "status": 0, + "executed": 1692787044 + }, + { + "status": 0, + "executed": 1692787345 + }, + { + "status": 0, + "executed": 1692787645 + }, + { + "status": 0, + "executed": 1692787945 + }, + { + "status": 0, + "executed": 1692788245 + }, + { + "status": 0, + "executed": 1692788545 + }, + { + "status": 0, + "executed": 1692788846 + }, + { + "status": 0, + "executed": 1692789146 + }, + { + "status": 0, + "executed": 1692789446 + } + ], + "issued": 1692789446, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/5.3005 ingressOctets=6815558747,egressOctets=13698559972,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789446, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-5.3005", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8c55a7f8-234c-418a-a05a-d17b665a5742", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789446 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.302 1450", + "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, + "duration": 0.432575767, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/5.302 ingressOctets=1471060684,egressOctets=702438949,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-5.302", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "13455e5f-1d15-49f0-afdd-86ff8e59a2e3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/5.991 956", + "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, + "duration": 0.32283911, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/5.991 ingressOctets=148695978485,egressOctets=4159658204,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-5.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1953caff-7a94-4f29-a7c7-7724f104842b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/6 611", + "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, + "duration": 0.35309686, + "executed": 1692789512, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784108 + }, + { + "status": 0, + "executed": 1692784408 + }, + { + "status": 0, + "executed": 1692784708 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785609 + }, + { + "status": 0, + "executed": 1692785909 + }, + { + "status": 0, + "executed": 1692786210 + }, + { + "status": 0, + "executed": 1692786510 + }, + { + "status": 0, + "executed": 1692786810 + }, + { + "status": 0, + "executed": 1692787110 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787711 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788912 + }, + { + "status": 0, + "executed": 1692789212 + }, + { + "status": 0, + "executed": 1692789512 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789512, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "30f00fba-913f-4ae3-80f8-578dd8ff79dd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789512 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/7 613", + "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, + "duration": 0.386017225, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783549 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785050 + }, + { + "status": 0, + "executed": 1692785350 + }, + { + "status": 0, + "executed": 1692785650 + }, + { + "status": 0, + "executed": 1692785950 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786551 + }, + { + "status": 0, + "executed": 1692786851 + }, + { + "status": 0, + "executed": 1692787151 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787752 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c233b119-738c-436a-b22d-302a1940e26b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/8 614", + "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, + "duration": 0.381499543, + "executed": 1692789542, + "history": [ + { + "status": 0, + "executed": 1692783538 + }, + { + "status": 0, + "executed": 1692783838 + }, + { + "status": 0, + "executed": 1692784138 + }, + { + "status": 0, + "executed": 1692784438 + }, + { + "status": 0, + "executed": 1692784738 + }, + { + "status": 0, + "executed": 1692785039 + }, + { + "status": 0, + "executed": 1692785339 + }, + { + "status": 0, + "executed": 1692785639 + }, + { + "status": 0, + "executed": 1692785939 + }, + { + "status": 0, + "executed": 1692786240 + }, + { + "status": 0, + "executed": 1692786540 + }, + { + "status": 0, + "executed": 1692786840 + }, + { + "status": 0, + "executed": 1692787140 + }, + { + "status": 0, + "executed": 1692787440 + }, + { + "status": 0, + "executed": 1692787741 + }, + { + "status": 0, + "executed": 1692788041 + }, + { + "status": 0, + "executed": 1692788341 + }, + { + "status": 0, + "executed": 1692788641 + }, + { + "status": 0, + "executed": 1692788942 + }, + { + "status": 0, + "executed": 1692789242 + }, + { + "status": 0, + "executed": 1692789542 + } + ], + "issued": 1692789541, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789542, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b70ac0b4-2a1d-445f-83ec-f2c30fa81594", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789542 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/9 615", + "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, + "duration": 0.412992725, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/9 ingressOctets=186112286436,egressOctets=1398856437,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2279a2d8-8d31-418d-862c-989debcd9bb3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/2/9.0 1183", + "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, + "duration": 0.518310509, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/2/9.0 ingressOctets=186112404512,egressOctets=1446002381,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-2-9.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "87373c90-348f-4cb8-97cb-2214fe33d216", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/0 616", + "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, + "duration": 0.377822853, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785363 + }, + { + "status": 0, + "executed": 1692785663 + }, + { + "status": 0, + "executed": 1692785963 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786864 + }, + { + "status": 0, + "executed": 1692787164 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787765 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788666 + }, + { + "status": 0, + "executed": 1692788966 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789566, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/0 ingressOctets=33548570143728,egressOctets=8539239363668,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=2523\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fa7b7fdd-7c51-4c68-9d19-3022604bf412", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/0.10 1328", + "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, + "duration": 0.352228007, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/0.10 ingressOctets=10942855763644,egressOctets=50131718552,ingressErrors=0,egressErrors=0,ingressOctetsv6=88574955880,egressOctetsv6=16762527556,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-0.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8e6cef59-c2bc-4cb6-8507-09746c7e7c36", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/0.11 1331", + "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, + "duration": 0.397512221, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/0.11 ingressOctets=12175870279227,egressOctets=160958846830,ingressErrors=0,egressErrors=0,ingressOctetsv6=987681,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-0.11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e1ee21c9-ed60-47a5-9967-f697f67c8a57", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/0.991 1332", + "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, + "duration": 0.47063084, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783845 + }, + { + "status": 0, + "executed": 1692784145 + }, + { + "status": 0, + "executed": 1692784445 + }, + { + "status": 0, + "executed": 1692784745 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787447 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788048 + }, + { + "status": 0, + "executed": 1692788348 + }, + { + "status": 0, + "executed": 1692788648 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/0.991 ingressOctets=142376040374,egressOctets=4028372326540,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 15548, + "occurrences_watermark": 15548, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-0.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1084a1ac-ad6b-40dc-b2ad-bd5808f154d9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/1 617", + "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, + "duration": 0.484593386, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785629 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 34828, + "occurrences_watermark": 34828, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "068bfe65-48dc-421a-a8e2-04920b75da54", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/2 618", + "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, + "duration": 0.361444801, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1994feaa-699d-4d4e-9538-fb3ff5e181a4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/3 619", + "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, + "duration": 0.377460201, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4bebff94-7bec-45fa-ab33-08020c00de6c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/4 620", + "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, + "duration": 0.390106494, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "42887941-593e-451c-9dca-6b1a7079e37e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/5 621", + "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, + "duration": 0.410339011, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1e20c0f2-d197-423d-bcf2-e7cc8751c2ce", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/6 622", + "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, + "duration": 0.364928135, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785995 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/6 ingressOctets=136848409689,egressOctets=87876950527,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 34830, + "occurrences_watermark": 34830, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c47b32a1-e797-4a7c-93f0-c1556a69db62", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/7 623", + "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, + "duration": 0.403137691, + "executed": 1692789576, + "history": [ + { + "status": 0, + "executed": 1692783572 + }, + { + "status": 0, + "executed": 1692783872 + }, + { + "status": 0, + "executed": 1692784172 + }, + { + "status": 0, + "executed": 1692784472 + }, + { + "status": 0, + "executed": 1692784772 + }, + { + "status": 0, + "executed": 1692785072 + }, + { + "status": 0, + "executed": 1692785372 + }, + { + "status": 0, + "executed": 1692785672 + }, + { + "status": 0, + "executed": 1692785972 + }, + { + "status": 0, + "executed": 1692786273 + }, + { + "status": 0, + "executed": 1692786573 + }, + { + "status": 0, + "executed": 1692786873 + }, + { + "status": 0, + "executed": 1692787173 + }, + { + "status": 0, + "executed": 1692787474 + }, + { + "status": 0, + "executed": 1692787774 + }, + { + "status": 0, + "executed": 1692788075 + }, + { + "status": 0, + "executed": 1692788375 + }, + { + "status": 0, + "executed": 1692788675 + }, + { + "status": 0, + "executed": 1692788975 + }, + { + "status": 0, + "executed": 1692789276 + }, + { + "status": 0, + "executed": 1692789576 + } + ], + "issued": 1692789575, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789576, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9706849a-0327-478d-9d57-b25969ca38e8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789576 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/8 624", + "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, + "duration": 0.355599962, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785974 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "451164dc-4bc8-45da-8fb2-c631230526aa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789578 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-0/3/9 625", + "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, + "duration": 0.4482941, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783857 + }, + { + "status": 0, + "executed": 1692784157 + }, + { + "status": 0, + "executed": 1692784457 + }, + { + "status": 0, + "executed": 1692784757 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-0/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-0-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "49374f5e-be44-4a67-8049-59e68fd71d2c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789562 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/0 639", + "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, + "duration": 0.384338527, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "079fba1b-928f-43fe-ad45-22afb1eec57e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/1 640", + "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, + "duration": 0.419728238, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e22383f0-305c-4b01-a75f-359b2f183953", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/2 641", + "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, + "duration": 0.525008122, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8ba16b31-308f-422a-80af-ef134b590692", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/3 642", + "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, + "duration": 0.36214422, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/3 ingressOctets=925319193,egressOctets=675407426,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dc464953-ff94-4ff3-8318-5c9e79cb1015", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/3.0 1184", + "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, + "duration": 0.377078249, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/3.0 ingressOctets=925311913,egressOctets=722549202,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9020a4a8-b4c3-431e-929b-f9a8b6c83e5b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/4 643", + "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, + "duration": 0.403351119, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a862d333-13a5-4d6a-88f7-77fe43dbbf89", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/5 646", + "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, + "duration": 0.433758831, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787535 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3a5a1fe6-edbe-4a2d-8902-96a8536a19fb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/6 647", + "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, + "duration": 0.414169822, + "executed": 1692789662, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784559 + }, + { + "status": 0, + "executed": 1692784859 + }, + { + "status": 0, + "executed": 1692785159 + }, + { + "status": 0, + "executed": 1692785459 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786360 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786960 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787561 + }, + { + "status": 0, + "executed": 1692787861 + }, + { + "status": 0, + "executed": 1692788161 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789062 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789662 + } + ], + "issued": 1692789662, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/6 ingressOctets=14565309145,egressOctets=4329167965,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789662, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "29d7a27b-fc81-4781-a85a-7438b65bf985", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/6.0 1185", + "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, + "duration": 0.387190983, + "executed": 1692789685, + "history": [ + { + "status": 0, + "executed": 1692783682 + }, + { + "status": 0, + "executed": 1692783982 + }, + { + "status": 0, + "executed": 1692784282 + }, + { + "status": 0, + "executed": 1692784583 + }, + { + "status": 0, + "executed": 1692784883 + }, + { + "status": 0, + "executed": 1692785183 + }, + { + "status": 0, + "executed": 1692785483 + }, + { + "status": 0, + "executed": 1692785783 + }, + { + "status": 0, + "executed": 1692786084 + }, + { + "status": 0, + "executed": 1692786384 + }, + { + "status": 0, + "executed": 1692786683 + }, + { + "status": 0, + "executed": 1692786984 + }, + { + "status": 0, + "executed": 1692787284 + }, + { + "status": 0, + "executed": 1692787584 + }, + { + "status": 0, + "executed": 1692787884 + }, + { + "status": 0, + "executed": 1692788184 + }, + { + "status": 0, + "executed": 1692788485 + }, + { + "status": 0, + "executed": 1692788785 + }, + { + "status": 0, + "executed": 1692789085 + }, + { + "status": 0, + "executed": 1692789385 + }, + { + "status": 0, + "executed": 1692789685 + } + ], + "issued": 1692789685, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/6.0 ingressOctets=14565312420,egressOctets=4376295059,ingressErrors=0,egressErrors=0,ingressOctetsv6=3405786745,egressOctetsv6=529112135,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789685, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "26dd0902-ef2d-4a93-9051-14ac629c3ab8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789685 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/7 648", + "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, + "duration": 0.346534011, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/7 ingressOctets=1814333441,egressOctets=52977082061434,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f014363f-f051-4e9d-948c-083b5599f565", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/7.0 1186", + "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, + "duration": 0.3638974, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783558 + }, + { + "status": 0, + "executed": 1692783858 + }, + { + "status": 0, + "executed": 1692784158 + }, + { + "status": 0, + "executed": 1692784458 + }, + { + "status": 0, + "executed": 1692784758 + }, + { + "status": 0, + "executed": 1692785059 + }, + { + "status": 0, + "executed": 1692785359 + }, + { + "status": 0, + "executed": 1692785659 + }, + { + "status": 0, + "executed": 1692785959 + }, + { + "status": 0, + "executed": 1692786260 + }, + { + "status": 0, + "executed": 1692786560 + }, + { + "status": 0, + "executed": 1692786860 + }, + { + "status": 0, + "executed": 1692787160 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787761 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788662 + }, + { + "status": 0, + "executed": 1692788962 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789562, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/7.0 ingressOctets=1814310759,egressOctets=52976725307166,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7b0b4ba4-dfb4-49ae-b67f-8c14d3c33bb4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789563 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8 649", + "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, + "duration": 0.386082051, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789102 + }, + { + "status": 0, + "executed": 1692789402 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/8 ingressOctets=100809746341,egressOctets=18487978811,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=168267\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a1f4691b-3715-4fb6-8da3-a49e8261e872", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789702 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.130 914", + "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, + "duration": 0.359408647, + "executed": 1692789710, + "history": [ + { + "status": 0, + "executed": 1692783705 + }, + { + "status": 0, + "executed": 1692784006 + }, + { + "status": 0, + "executed": 1692784306 + }, + { + "status": 0, + "executed": 1692784606 + }, + { + "status": 0, + "executed": 1692784906 + }, + { + "status": 0, + "executed": 1692785206 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785807 + }, + { + "status": 0, + "executed": 1692786107 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786709 + }, + { + "status": 0, + "executed": 1692787009 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788210 + }, + { + "status": 0, + "executed": 1692788510 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789710 + } + ], + "issued": 1692789710, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/8.130 ingressOctets=122506210,egressOctets=117264425,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789710, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-8.130", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cc897299-3205-490a-a097-98f6ed8844f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.131 915", + "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, + "duration": 0.434909949, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/8.131 ingressOctets=90159945068,egressOctets=1911897969,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-8.131", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "221670e8-66eb-452b-b65b-9d063a52a760", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789570 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.21 901", + "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, + "duration": 0.381683996, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/8.21 ingressOctets=751455876,egressOctets=817273093,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-8.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cf9feedd-e7ff-4ab5-95b2-c611e897253d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.25 1248", + "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, + "duration": 0.391803239, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786591 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/8.25 ingressOctets=171537206,egressOctets=151376809,ingressErrors=0,egressErrors=0,ingressOctetsv6=41856780,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-8.25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d061a543-4d00-486b-897d-3aeb2acf5077", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.26 1580", + "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, + "duration": 0.364110389, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/8.26 ingressOctets=114465817,egressOctets=131140958,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 14320, + "occurrences_watermark": 14320, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-8.26", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "12ccd983-ce38-4c0b-a579-5647cabb786c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.27 1578", + "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, + "duration": 0.431380939, + "executed": 1692789617, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789617 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/8.27 ingressOctets=551812763,egressOctets=5370532655,ingressErrors=0,egressErrors=0,ingressOctetsv6=346050490,egressOctetsv6=4838315677,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789617, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-8.27", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a584c196-2ce3-48f3-8719-ebe2176a5c5e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.28 1579", + "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, + "duration": 0.428930748, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786302 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/8.28 ingressOctets=1698096070,egressOctets=523891340,ingressErrors=0,egressErrors=0,ingressOctetsv6=8373255,egressOctetsv6=1000795,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-8.28", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "57c417db-b418-494d-8a2e-0281c90f0f44", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/8.60 904", + "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, + "duration": 0.407508821, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/8.60 ingressOctets=0,egressOctets=427900774,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-8.60", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ad40086-1aaa-425a-b010-8f1bb17c35cd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789570 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/2/9 656", + "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, + "duration": 0.382232943, + "executed": 1692789456, + "history": [ + { + "status": 0, + "executed": 1692783452 + }, + { + "status": 0, + "executed": 1692783752 + }, + { + "status": 0, + "executed": 1692784052 + }, + { + "status": 0, + "executed": 1692784353 + }, + { + "status": 0, + "executed": 1692784653 + }, + { + "status": 0, + "executed": 1692784953 + }, + { + "status": 0, + "executed": 1692785253 + }, + { + "status": 0, + "executed": 1692785554 + }, + { + "status": 0, + "executed": 1692785854 + }, + { + "status": 0, + "executed": 1692786154 + }, + { + "status": 0, + "executed": 1692786455 + }, + { + "status": 0, + "executed": 1692786755 + }, + { + "status": 0, + "executed": 1692787055 + }, + { + "status": 0, + "executed": 1692787355 + }, + { + "status": 0, + "executed": 1692787656 + }, + { + "status": 0, + "executed": 1692787956 + }, + { + "status": 0, + "executed": 1692788256 + }, + { + "status": 0, + "executed": 1692788556 + }, + { + "status": 0, + "executed": 1692788856 + }, + { + "status": 0, + "executed": 1692789156 + }, + { + "status": 0, + "executed": 1692789456 + } + ], + "issued": 1692789456, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789456, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ad2dde6d-09de-4ee5-9db2-75649ed0bbfc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789457 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/0 658", + "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, + "duration": 0.399685622, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/0 ingressOctets=5386057568,egressOctets=1053474288,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bd17b990-ec09-43d1-aa57-1cbecd2c7834", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/1 659", + "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, + "duration": 0.332992095, + "executed": 1692789472, + "history": [ + { + "status": 0, + "executed": 1692783467 + }, + { + "status": 0, + "executed": 1692783767 + }, + { + "status": 0, + "executed": 1692784068 + }, + { + "status": 0, + "executed": 1692784368 + }, + { + "status": 0, + "executed": 1692784668 + }, + { + "status": 0, + "executed": 1692784968 + }, + { + "status": 0, + "executed": 1692785269 + }, + { + "status": 0, + "executed": 1692785569 + }, + { + "status": 0, + "executed": 1692785869 + }, + { + "status": 0, + "executed": 1692786170 + }, + { + "status": 0, + "executed": 1692786470 + }, + { + "status": 0, + "executed": 1692786770 + }, + { + "status": 0, + "executed": 1692787070 + }, + { + "status": 0, + "executed": 1692787371 + }, + { + "status": 0, + "executed": 1692787671 + }, + { + "status": 0, + "executed": 1692787971 + }, + { + "status": 0, + "executed": 1692788272 + }, + { + "status": 0, + "executed": 1692788572 + }, + { + "status": 0, + "executed": 1692788872 + }, + { + "status": 0, + "executed": 1692789172 + }, + { + "status": 0, + "executed": 1692789472 + } + ], + "issued": 1692789472, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789472, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ec785893-fce1-4ffa-aec5-d8721da3cd09", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789473 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/2 662", + "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, + "duration": 0.378757381, + "executed": 1692789655, + "history": [ + { + "status": 0, + "executed": 1692783650 + }, + { + "status": 0, + "executed": 1692783950 + }, + { + "status": 0, + "executed": 1692784250 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785152 + }, + { + "status": 0, + "executed": 1692785452 + }, + { + "status": 0, + "executed": 1692785752 + }, + { + "status": 0, + "executed": 1692786053 + }, + { + "status": 0, + "executed": 1692786353 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786953 + }, + { + "status": 0, + "executed": 1692787253 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787854 + }, + { + "status": 0, + "executed": 1692788154 + }, + { + "status": 0, + "executed": 1692788454 + }, + { + "status": 0, + "executed": 1692788754 + }, + { + "status": 0, + "executed": 1692789055 + }, + { + "status": 0, + "executed": 1692789355 + }, + { + "status": 0, + "executed": 1692789655 + } + ], + "issued": 1692789655, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789655, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "36e3829d-ec9b-43f0-af06-a9bf69af23ff", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789655 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/3 663", + "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, + "duration": 0.404812711, + "executed": 1692789484, + "history": [ + { + "status": 0, + "executed": 1692783480 + }, + { + "status": 0, + "executed": 1692783780 + }, + { + "status": 0, + "executed": 1692784080 + }, + { + "status": 0, + "executed": 1692784380 + }, + { + "status": 0, + "executed": 1692784680 + }, + { + "status": 0, + "executed": 1692784980 + }, + { + "status": 0, + "executed": 1692785281 + }, + { + "status": 0, + "executed": 1692785581 + }, + { + "status": 0, + "executed": 1692785881 + }, + { + "status": 0, + "executed": 1692786182 + }, + { + "status": 0, + "executed": 1692786482 + }, + { + "status": 0, + "executed": 1692786782 + }, + { + "status": 0, + "executed": 1692787082 + }, + { + "status": 0, + "executed": 1692787383 + }, + { + "status": 0, + "executed": 1692787683 + }, + { + "status": 0, + "executed": 1692787983 + }, + { + "status": 0, + "executed": 1692788284 + }, + { + "status": 0, + "executed": 1692788584 + }, + { + "status": 0, + "executed": 1692788884 + }, + { + "status": 0, + "executed": 1692789184 + }, + { + "status": 0, + "executed": 1692789484 + } + ], + "issued": 1692789484, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/3 ingressOctets=288,egressOctets=43181810,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789484, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4ee4a13c-3676-43aa-8f3e-09bd4a46ef01", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789485 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/4 664", + "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, + "duration": 0.400268233, + "executed": 1692789657, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785754 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787255 + }, + { + "status": 0, + "executed": 1692787555 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788456 + }, + { + "status": 0, + "executed": 1692788756 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789357 + }, + { + "status": 0, + "executed": 1692789657 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/4 ingressOctets=0,egressOctets=749351599,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789657, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b6e4e04e-6456-42da-9bfa-34c631dff82a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789657 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/4.0 677", + "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, + "duration": 0.432695089, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/4.0 ingressOctets=0,egressOctets=796429564,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7a2b8966-c25a-4367-994e-6e2009b0d05e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/5 665", + "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, + "duration": 0.384015649, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dccd5cc9-7fa8-43a6-9cd0-c77415c1aa69", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/6 666", + "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, + "duration": 0.443389086, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783844 + }, + { + "status": 0, + "executed": 1692784144 + }, + { + "status": 0, + "executed": 1692784444 + }, + { + "status": 0, + "executed": 1692784744 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787446 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788047 + }, + { + "status": 0, + "executed": 1692788347 + }, + { + "status": 0, + "executed": 1692788647 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "153d2df2-73c6-4b3e-b047-5e890cb3c6c5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/7 667", + "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, + "duration": 0.388016825, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789103 + }, + { + "status": 0, + "executed": 1692789403 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f28c41b8-1f5c-46df-83ab-1d844b787993", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789703 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/8 668", + "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, + "duration": 0.3525476, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e8955492-ccf2-445c-9e6b-7763410a9ca2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net ge-1/3/9 669", + "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, + "duration": 0.36119982, + "executed": 1692789700, + "history": [ + { + "status": 0, + "executed": 1692783697 + }, + { + "status": 0, + "executed": 1692783997 + }, + { + "status": 0, + "executed": 1692784297 + }, + { + "status": 0, + "executed": 1692784598 + }, + { + "status": 0, + "executed": 1692784898 + }, + { + "status": 0, + "executed": 1692785198 + }, + { + "status": 0, + "executed": 1692785498 + }, + { + "status": 0, + "executed": 1692785798 + }, + { + "status": 0, + "executed": 1692786099 + }, + { + "status": 0, + "executed": 1692786399 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692786999 + }, + { + "status": 0, + "executed": 1692787299 + }, + { + "status": 0, + "executed": 1692787599 + }, + { + "status": 0, + "executed": 1692787899 + }, + { + "status": 0, + "executed": 1692788200 + }, + { + "status": 0, + "executed": 1692788500 + }, + { + "status": 0, + "executed": 1692788800 + }, + { + "status": 0, + "executed": 1692789100 + }, + { + "status": 0, + "executed": 1692789400 + }, + { + "status": 0, + "executed": 1692789700 + } + ], + "issued": 1692789700, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=ge-1/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789700, + "occurrences": 14322, + "occurrences_watermark": 14322, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-ge-1-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "09a57a1f-5b1f-44f1-bf2a-fc32d8b515b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789700 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.0 1073", + "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, + "duration": 0.451568317, + "executed": 1692789427, + "history": [ + { + "status": 0, + "executed": 1692783423 + }, + { + "status": 0, + "executed": 1692783723 + }, + { + "status": 0, + "executed": 1692784023 + }, + { + "status": 0, + "executed": 1692784323 + }, + { + "status": 0, + "executed": 1692784623 + }, + { + "status": 0, + "executed": 1692784923 + }, + { + "status": 0, + "executed": 1692785223 + }, + { + "status": 0, + "executed": 1692785523 + }, + { + "status": 0, + "executed": 1692785824 + }, + { + "status": 0, + "executed": 1692786124 + }, + { + "status": 0, + "executed": 1692786425 + }, + { + "status": 0, + "executed": 1692786725 + }, + { + "status": 0, + "executed": 1692787025 + }, + { + "status": 0, + "executed": 1692787325 + }, + { + "status": 0, + "executed": 1692787625 + }, + { + "status": 0, + "executed": 1692787925 + }, + { + "status": 0, + "executed": 1692788226 + }, + { + "status": 0, + "executed": 1692788526 + }, + { + "status": 0, + "executed": 1692788826 + }, + { + "status": 0, + "executed": 1692789127 + }, + { + "status": 0, + "executed": 1692789427 + } + ], + "issued": 1692789427, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.0 ingressOctets=61691324,egressOctets=986503972765264,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789427, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "50d34840-6cea-4388-8286-9c60bd0a74de", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789427 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.1 1074", + "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, + "duration": 0.450118207, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "65540ae1-cb25-48eb-9d0c-303e6f4050bd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.10 672", + "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, + "duration": 0.399297353, + "executed": 1692789701, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783998 + }, + { + "status": 0, + "executed": 1692784298 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785499 + }, + { + "status": 0, + "executed": 1692785799 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787300 + }, + { + "status": 0, + "executed": 1692787600 + }, + { + "status": 0, + "executed": 1692787900 + }, + { + "status": 0, + "executed": 1692788201 + }, + { + "status": 0, + "executed": 1692788501 + }, + { + "status": 0, + "executed": 1692788801 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789701 + } + ], + "issued": 1692789701, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.10 ingressOctets=845933047,egressOctets=5412310752956,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789701, + "occurrences": 15553, + "occurrences_watermark": 15553, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5caf0653-5626-4c88-83ac-2764ec11a921", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.11 715", + "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, + "duration": 0.384655869, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783857 + }, + { + "status": 0, + "executed": 1692784157 + }, + { + "status": 0, + "executed": 1692784457 + }, + { + "status": 0, + "executed": 1692784757 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.11 ingressOctets=6981850602,egressOctets=426443356539511,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2cf80300-a536-4ab1-aa68-b64bfccd15be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789562 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.12 703", + "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, + "duration": 0.420357493, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.12 ingressOctets=0,egressOctets=176130799156534,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "50a1076a-cef5-40a7-a59c-07a2c327b0e0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.13 1277", + "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, + "duration": 0.450577544, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.13 ingressOctets=0,egressOctets=547831452753282,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2c523f6d-71e6-4ad5-aa04-cde935b44754", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.14 1282", + "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, + "duration": 0.405945249, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789103 + }, + { + "status": 0, + "executed": 1692789403 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.14 ingressOctets=4903607732,egressOctets=438680578763940,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.14", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "acc35864-dd9d-4383-9ad1-901ea7c39afd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789703 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.15 1333", + "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, + "duration": 0.358401693, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783523 + }, + { + "status": 0, + "executed": 1692783824 + }, + { + "status": 0, + "executed": 1692784124 + }, + { + "status": 0, + "executed": 1692784424 + }, + { + "status": 0, + "executed": 1692784724 + }, + { + "status": 0, + "executed": 1692785024 + }, + { + "status": 0, + "executed": 1692785324 + }, + { + "status": 0, + "executed": 1692785625 + }, + { + "status": 0, + "executed": 1692785925 + }, + { + "status": 0, + "executed": 1692786226 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786826 + }, + { + "status": 0, + "executed": 1692787126 + }, + { + "status": 0, + "executed": 1692787426 + }, + { + "status": 0, + "executed": 1692787727 + }, + { + "status": 0, + "executed": 1692788027 + }, + { + "status": 0, + "executed": 1692788327 + }, + { + "status": 0, + "executed": 1692788627 + }, + { + "status": 0, + "executed": 1692788928 + }, + { + "status": 0, + "executed": 1692789228 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789527, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.15 ingressOctets=61700156,egressOctets=986508491772615,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.15", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4eaa6c40-7215-4924-8ea7-c967aa4193c2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789528 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.16 947", + "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, + "duration": 0.351640183, + "executed": 1692789497, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787095 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787696 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788897 + }, + { + "status": 0, + "executed": 1692789197 + }, + { + "status": 0, + "executed": 1692789497 + } + ], + "issued": 1692789497, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.16 ingressOctets=0,egressOctets=67007115378659,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789497, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f27eb89a-7b03-4da7-bd5e-58d6ae076ded", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789498 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.17 949", + "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, + "duration": 0.349170437, + "executed": 1692789537, + "history": [ + { + "status": 0, + "executed": 1692783533 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784434 + }, + { + "status": 0, + "executed": 1692784734 + }, + { + "status": 0, + "executed": 1692785034 + }, + { + "status": 0, + "executed": 1692785334 + }, + { + "status": 0, + "executed": 1692785634 + }, + { + "status": 0, + "executed": 1692785934 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786535 + }, + { + "status": 0, + "executed": 1692786835 + }, + { + "status": 0, + "executed": 1692787135 + }, + { + "status": 0, + "executed": 1692787436 + }, + { + "status": 0, + "executed": 1692787736 + }, + { + "status": 0, + "executed": 1692788037 + }, + { + "status": 0, + "executed": 1692788337 + }, + { + "status": 0, + "executed": 1692788637 + }, + { + "status": 0, + "executed": 1692788937 + }, + { + "status": 0, + "executed": 1692789237 + }, + { + "status": 0, + "executed": 1692789537 + } + ], + "issued": 1692789537, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.17 ingressOctets=0,egressOctets=17672877786332,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789537, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.17", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "768edf8b-a3ac-4c7e-a81b-24b25eee7273", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789538 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.18 1010", + "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, + "duration": 0.415485657, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.18 ingressOctets=3348333423,egressOctets=161057727162315,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.18", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1a9469dd-45d0-4786-87cf-0c306e46ac41", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.19 1176", + "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, + "duration": 0.405670612, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785363 + }, + { + "status": 0, + "executed": 1692785663 + }, + { + "status": 0, + "executed": 1692785963 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786864 + }, + { + "status": 0, + "executed": 1692787164 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787765 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788666 + }, + { + "status": 0, + "executed": 1692788966 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789566, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.19 ingressOctets=672949470,egressOctets=45156020239886,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.19", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "03a820bc-7356-4577-aed9-fdda4de1d51a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.2 752", + "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, + "duration": 0.383001909, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784502 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786003 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.2 ingressOctets=0,egressOctets=118766376396920,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1c82c35d-fa15-4af8-b338-1fcdff39930a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.20 899", + "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, + "duration": 0.393836459, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785995 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.20 ingressOctets=4418251398,egressOctets=218701458953527,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 14321, + "occurrences_watermark": 14321, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.20", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fd0625df-feeb-4a67-bc54-0c90632c0522", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.21 1368", + "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, + "duration": 0.40742559, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786591 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.21 ingressOctets=14149252437,egressOctets=547833855868606,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b335e744-f2c8-4de5-bedb-6557a860d29b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.22 905", + "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, + "duration": 0.377535308, + "executed": 1692789508, + "history": [ + { + "status": 0, + "executed": 1692783504 + }, + { + "status": 0, + "executed": 1692783804 + }, + { + "status": 0, + "executed": 1692784104 + }, + { + "status": 0, + "executed": 1692784404 + }, + { + "status": 0, + "executed": 1692784704 + }, + { + "status": 0, + "executed": 1692785005 + }, + { + "status": 0, + "executed": 1692785305 + }, + { + "status": 0, + "executed": 1692785605 + }, + { + "status": 0, + "executed": 1692785905 + }, + { + "status": 0, + "executed": 1692786206 + }, + { + "status": 0, + "executed": 1692786506 + }, + { + "status": 0, + "executed": 1692786806 + }, + { + "status": 0, + "executed": 1692787106 + }, + { + "status": 0, + "executed": 1692787407 + }, + { + "status": 0, + "executed": 1692787707 + }, + { + "status": 0, + "executed": 1692788008 + }, + { + "status": 0, + "executed": 1692788308 + }, + { + "status": 0, + "executed": 1692788608 + }, + { + "status": 0, + "executed": 1692788908 + }, + { + "status": 0, + "executed": 1692789208 + }, + { + "status": 0, + "executed": 1692789508 + } + ], + "issued": 1692789508, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.22 ingressOctets=2267876703,egressOctets=139985146429131,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789508, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "af6d4f06-9daf-4f2b-82c2-538d4b483446", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789509 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.23 1032", + "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, + "duration": 0.429602769, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.23 ingressOctets=46388841,egressOctets=83434559,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 11828, + "occurrences_watermark": 11828, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "52e84a3e-8510-4a62-a7d5-6eb1b9e571be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.24 1054", + "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, + "duration": 0.417373285, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.24 ingressOctets=0,egressOctets=75572060,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 11828, + "occurrences_watermark": 11828, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.24", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "07f3c875-e699-429d-826d-4042cb11f6ae", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-0/0/0.6 1244", + "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, + "duration": 0.544546072, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785629 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-0/0/0.6 ingressOctets=0,egressOctets=547833222007296,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-0-0-0.6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aba5c2e9-7fd8-4500-ad6d-67356844fa0b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net gr-1/0/0.0 1120", + "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, + "duration": 0.459226169, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786302 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=gr-1/0/0.0 ingressOctets=227271316,egressOctets=2111421826,ingressErrors=0,egressErrors=0,ingressOctetsv6=17114,egressOctetsv6=565406618,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 34826, + "occurrences_watermark": 34826, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-gr-1-0-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "465dfe31-b63f-42e6-8dd9-cc3bde40defb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3000 1084", + "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, + "duration": 0.363897445, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784502 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786003 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=irb.3000 ingressOctets=434197075382942,egressOctets=260187275721667,ingressErrors=0,egressErrors=0,ingressOctetsv6=20002019898099,egressOctetsv6=45006566224906,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-irb.3000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4f8dc56e-b74f-409b-b1c4-5f10c59abc69", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3001 678", + "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, + "duration": 0.470003929, + "executed": 1692789630, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786628 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789630 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=irb.3001 ingressOctets=98956,egressOctets=1595067892,ingressErrors=0,egressErrors=0,ingressOctetsv6=1400,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789630, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-irb.3001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5fbb1ba2-e647-4785-b1eb-3317686a4176", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3002 1384", + "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, + "duration": 0.439793672, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783621 + }, + { + "status": 0, + "executed": 1692783921 + }, + { + "status": 0, + "executed": 1692784221 + }, + { + "status": 0, + "executed": 1692784521 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785422 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786323 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786923 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787524 + }, + { + "status": 0, + "executed": 1692787824 + }, + { + "status": 0, + "executed": 1692788124 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789025 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789625, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=irb.3002 ingressOctets=4780443720,egressOctets=7593971718,ingressErrors=0,egressErrors=0,ingressOctetsv6=2963957,egressOctetsv6=1629768,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 34828, + "occurrences_watermark": 34828, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-irb.3002", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0f38f28f-524f-4a5e-bb25-ab5508da3296", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3003 1385", + "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, + "duration": 0.384559503, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786003 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=irb.3003 ingressOctets=1965135175,egressOctets=7589881759,ingressErrors=0,egressErrors=0,ingressOctetsv6=483324,egressOctetsv6=7158,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-irb.3003", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "44a2e65a-f1c3-4840-9a7f-f562f8198228", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3004 1396", + "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, + "duration": 0.417897289, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784502 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786003 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=irb.3004 ingressOctets=4491185698,egressOctets=14624183181,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-irb.3004", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "409ae9c0-2b73-4a06-8c57-6b18d7a80ed2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.3006 1270", + "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, + "duration": 2.317529841, + "executed": 1692789518, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784113 + }, + { + "status": 0, + "executed": 1692784413 + }, + { + "status": 0, + "executed": 1692784713 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789518 + } + ], + "issued": 1692789517, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=irb.3006 ingressOctets=159512034,egressOctets=1646426997,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789518, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-irb.3006", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c5c6d6bf-87e5-4107-beb7-06c3ea4cb420", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789520 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.370 1269", + "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, + "duration": 0.394199827, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=irb.370 ingressOctets=85983673436,egressOctets=838285955608,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 15548, + "occurrences_watermark": 15548, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-irb.370", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "38a46c3d-4a4a-467b-be67-aa79ff2a8027", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.50 1256", + "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, + "duration": 0.412209229, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=irb.50 ingressOctets=14513262682,egressOctets=14705192977,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-irb.50", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d719fd24-c6c3-45ab-a389-78f57d8bcdd1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.991 822", + "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, + "duration": 0.415497806, + "executed": 1692789638, + "history": [ + { + "status": 0, + "executed": 1692783634 + }, + { + "status": 0, + "executed": 1692783934 + }, + { + "status": 0, + "executed": 1692784234 + }, + { + "status": 0, + "executed": 1692784534 + }, + { + "status": 0, + "executed": 1692784834 + }, + { + "status": 0, + "executed": 1692785134 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786636 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788437 + }, + { + "status": 0, + "executed": 1692788737 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789338 + }, + { + "status": 0, + "executed": 1692789638 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=irb.991 ingressOctets=63871243243,egressOctets=97253454635,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789638, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-irb.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f38340dd-1d0c-4171-b203-60372f2eed92", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789638 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net irb.999 707", + "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, + "duration": 0.390894638, + "executed": 1692789613, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786310 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789613 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=irb.999 ingressOctets=4825638846,egressOctets=31471179048,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789613, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-irb.999", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c04e590c-d934-4ea1-a9f1-771ea1722f18", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-1/1/0 1134", + "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, + "duration": 0.358677347, + "executed": 1692789576, + "history": [ + { + "status": 0, + "executed": 1692783572 + }, + { + "status": 0, + "executed": 1692783872 + }, + { + "status": 0, + "executed": 1692784172 + }, + { + "status": 0, + "executed": 1692784472 + }, + { + "status": 0, + "executed": 1692784772 + }, + { + "status": 0, + "executed": 1692785072 + }, + { + "status": 0, + "executed": 1692785372 + }, + { + "status": 0, + "executed": 1692785672 + }, + { + "status": 0, + "executed": 1692785972 + }, + { + "status": 0, + "executed": 1692786273 + }, + { + "status": 0, + "executed": 1692786573 + }, + { + "status": 0, + "executed": 1692786873 + }, + { + "status": 0, + "executed": 1692787173 + }, + { + "status": 0, + "executed": 1692787474 + }, + { + "status": 0, + "executed": 1692787774 + }, + { + "status": 0, + "executed": 1692788075 + }, + { + "status": 0, + "executed": 1692788375 + }, + { + "status": 0, + "executed": 1692788675 + }, + { + "status": 0, + "executed": 1692788975 + }, + { + "status": 0, + "executed": 1692789276 + }, + { + "status": 0, + "executed": 1692789576 + } + ], + "issued": 1692789575, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=lt-1/1/0 ingressOctets=1538217561,egressOctets=1721333937,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789576, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-lt-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "41e8d009-3e63-4f4e-892b-3fb7bea27d98", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789576 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-1/1/0.12 1137", + "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, + "duration": 0.500872847, + "executed": 1692789630, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785427 + }, + { + "status": 0, + "executed": 1692785727 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786328 + }, + { + "status": 0, + "executed": 1692786628 + }, + { + "status": 0, + "executed": 1692786928 + }, + { + "status": 0, + "executed": 1692787228 + }, + { + "status": 0, + "executed": 1692787529 + }, + { + "status": 0, + "executed": 1692787829 + }, + { + "status": 0, + "executed": 1692788129 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789630 + } + ], + "issued": 1692789630, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=lt-1/1/0.12 ingressOctets=98650449,egressOctets=160346266,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789630, + "occurrences": 15548, + "occurrences_watermark": 15548, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-lt-1-1-0.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ad2e9b8d-74c5-48bc-8eb5-4699c17434e9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789631 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-1/1/0.13 1138", + "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, + "duration": 0.412188448, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783638 + }, + { + "status": 0, + "executed": 1692783938 + }, + { + "status": 0, + "executed": 1692784238 + }, + { + "status": 0, + "executed": 1692784538 + }, + { + "status": 0, + "executed": 1692784838 + }, + { + "status": 0, + "executed": 1692785138 + }, + { + "status": 0, + "executed": 1692785439 + }, + { + "status": 0, + "executed": 1692785739 + }, + { + "status": 0, + "executed": 1692786039 + }, + { + "status": 0, + "executed": 1692786340 + }, + { + "status": 0, + "executed": 1692786640 + }, + { + "status": 0, + "executed": 1692786940 + }, + { + "status": 0, + "executed": 1692787240 + }, + { + "status": 0, + "executed": 1692787540 + }, + { + "status": 0, + "executed": 1692787841 + }, + { + "status": 0, + "executed": 1692788141 + }, + { + "status": 0, + "executed": 1692788442 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789343 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=lt-1/1/0.13 ingressOctets=292127053,egressOctets=1056805725,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-lt-1-1-0.13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "168ed657-a98a-464a-b3f2-f1aa02ea9621", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-1/1/0.21 1140", + "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, + "duration": 0.376922357, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786356 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=lt-1/1/0.21 ingressOctets=131942976,egressOctets=127056764,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 15545, + "occurrences_watermark": 15545, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-lt-1-1-0.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ccf0bb79-4600-4440-bf47-b53a24ed07c6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-1/1/0.31 1141", + "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, + "duration": 0.610011889, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=lt-1/1/0.31 ingressOctets=1015309199,egressOctets=376927356,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-lt-1-1-0.31", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b7743bae-9501-4521-806e-dafc924601cd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-9/1/0 1440", + "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, + "duration": 0.391315667, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784502 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786003 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=lt-9/1/0 ingressOctets=2109637399250284,egressOctets=2109648676560158,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 15548, + "occurrences_watermark": 15548, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-lt-9-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9f80d8db-c531-49f1-94ca-14a2652fef2d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-9/1/0.1112 1461", + "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, + "duration": 0.554583327, + "executed": 1692789617, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785413 + }, + { + "status": 0, + "executed": 1692785713 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786614 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789016 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789617 + } + ], + "issued": 1692789616, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=lt-9/1/0.1112 ingressOctets=930289950,egressOctets=120194319,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789617, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-lt-9-1-0.1112", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c9fb75a2-8700-45e2-a111-6818fd99680a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-9/1/0.16 1459", + "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, + "duration": 0.370868808, + "executed": 1692789654, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785150 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788453 + }, + { + "status": 0, + "executed": 1692788753 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789354 + }, + { + "status": 0, + "executed": 1692789654 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=lt-9/1/0.16 ingressOctets=99365931969610,egressOctets=2010287563396711,ingressErrors=0,egressErrors=0,ingressOctetsv6=15333880112261,egressOctetsv6=6043355873436,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789654, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-lt-9-1-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7a63acd6-4129-4a1c-8a90-bf26f25156fd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-9/1/0.2111 1462", + "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, + "duration": 0.4875668, + "executed": 1692789636, + "history": [ + { + "status": 0, + "executed": 1692783631 + }, + { + "status": 0, + "executed": 1692783931 + }, + { + "status": 0, + "executed": 1692784231 + }, + { + "status": 0, + "executed": 1692784531 + }, + { + "status": 0, + "executed": 1692784832 + }, + { + "status": 0, + "executed": 1692785132 + }, + { + "status": 0, + "executed": 1692785432 + }, + { + "status": 0, + "executed": 1692785733 + }, + { + "status": 0, + "executed": 1692786033 + }, + { + "status": 0, + "executed": 1692786333 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786933 + }, + { + "status": 0, + "executed": 1692787233 + }, + { + "status": 0, + "executed": 1692787534 + }, + { + "status": 0, + "executed": 1692787834 + }, + { + "status": 0, + "executed": 1692788134 + }, + { + "status": 0, + "executed": 1692788435 + }, + { + "status": 0, + "executed": 1692788735 + }, + { + "status": 0, + "executed": 1692789035 + }, + { + "status": 0, + "executed": 1692789336 + }, + { + "status": 0, + "executed": 1692789636 + } + ], + "issued": 1692789635, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=lt-9/1/0.2111 ingressOctets=92411151,egressOctets=943977399,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789636, + "occurrences": 15544, + "occurrences_watermark": 15544, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-lt-9-1-0.2111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9733b6e5-b2a8-4746-9f6d-41d6de2b2b8c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789636 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net lt-9/1/0.61 1460", + "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, + "duration": 0.390144892, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=lt-9/1/0.61 ingressOctets=2010271366258076,egressOctets=99365653604233,ingressErrors=0,egressErrors=0,ingressOctetsv6=6086156325286,egressOctetsv6=15338355358049,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-lt-9-1-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5f4f62e6-2163-47ff-9d96-c4a80d84405a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-0/0/0 602", + "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, + "duration": 0.60382047, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-0/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 15544, + "occurrences_watermark": 15544, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "281aab4b-e99c-4aba-8b3c-275d46860622", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-0/0/1 603", + "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, + "duration": 0.416070771, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-0/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4e76a09f-d23e-4498-9047-bd60c6f580ee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-0/1/0 604", + "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, + "duration": 0.347367694, + "executed": 1692789527, + "history": [ + { + "status": 0, + "executed": 1692783522 + }, + { + "status": 0, + "executed": 1692783822 + }, + { + "status": 0, + "executed": 1692784123 + }, + { + "status": 0, + "executed": 1692784423 + }, + { + "status": 0, + "executed": 1692784723 + }, + { + "status": 0, + "executed": 1692785023 + }, + { + "status": 0, + "executed": 1692785323 + }, + { + "status": 0, + "executed": 1692785624 + }, + { + "status": 0, + "executed": 1692785924 + }, + { + "status": 0, + "executed": 1692786224 + }, + { + "status": 0, + "executed": 1692786525 + }, + { + "status": 0, + "executed": 1692786825 + }, + { + "status": 0, + "executed": 1692787125 + }, + { + "status": 0, + "executed": 1692787425 + }, + { + "status": 0, + "executed": 1692787726 + }, + { + "status": 0, + "executed": 1692788026 + }, + { + "status": 0, + "executed": 1692788326 + }, + { + "status": 0, + "executed": 1692788626 + }, + { + "status": 0, + "executed": 1692788927 + }, + { + "status": 0, + "executed": 1692789227 + }, + { + "status": 0, + "executed": 1692789527 + } + ], + "issued": 1692789526, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-0/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789527, + "occurrences": 15547, + "occurrences_watermark": 15547, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1d95ccbb-df3b-4d10-a4cf-818c40f5ad1a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789527 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-0/1/1 605", + "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, + "duration": 0.366336508, + "executed": 1692789652, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784848 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786049 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788150 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789652 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-0/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789652, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c3cfb010-18a6-4db1-8ec4-ced5c31b3df8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-1/0/0 564", + "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, + "duration": 0.599591765, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-1/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f75e3d5e-9d56-4501-8480-2380c7a0d6f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-1/0/1 565", + "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, + "duration": 0.405526917, + "executed": 1692789652, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784848 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786049 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788150 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789652 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-1/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789652, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e004c35f-0f24-4f35-baca-827d0bc19272", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-1/1/0 566", + "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, + "duration": 0.424648205, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-1/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7fa70541-cbe2-4c10-a8a1-2104f3a6bf72", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-1/1/1 567", + "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, + "duration": 0.379259076, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786661 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-1/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-1-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5d0078a5-d290-42a6-bd24-2448d8ecbabe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789664 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/0 779", + "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, + "duration": 0.476872953, + "executed": 1692789630, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786628 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789630 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/0/0 ingressOctets=4354101342290674,egressOctets=8583767182189431,ingressErrors=1901,egressErrors=0,ingressDiscards=0,egressDiscards=3401716\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789630, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a0f0c01-b7e7-405f-a085-f4dc3be24f88", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/1 780", + "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, + "duration": 0.458082524, + "executed": 1692789638, + "history": [ + { + "status": 0, + "executed": 1692783634 + }, + { + "status": 0, + "executed": 1692783934 + }, + { + "status": 0, + "executed": 1692784234 + }, + { + "status": 0, + "executed": 1692784534 + }, + { + "status": 0, + "executed": 1692784834 + }, + { + "status": 0, + "executed": 1692785134 + }, + { + "status": 0, + "executed": 1692785435 + }, + { + "status": 0, + "executed": 1692785735 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786336 + }, + { + "status": 0, + "executed": 1692786636 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787236 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787837 + }, + { + "status": 0, + "executed": 1692788137 + }, + { + "status": 0, + "executed": 1692788437 + }, + { + "status": 0, + "executed": 1692788737 + }, + { + "status": 0, + "executed": 1692789038 + }, + { + "status": 0, + "executed": 1692789338 + }, + { + "status": 0, + "executed": 1692789638 + } + ], + "issued": 1692789638, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/0/1 ingressOctets=43746365972382,egressOctets=2476196312967581,ingressErrors=45,egressErrors=0,ingressDiscards=0,egressDiscards=145339\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789638, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "914a984c-1a36-41a6-9c91-af86c674f345", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789639 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/2 781", + "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, + "duration": 0.363738251, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/0/2 ingressOctets=151087116631889,egressOctets=124926519017163,ingressErrors=2,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "20788b08-1ab3-45a7-82ec-8a3830196d8c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/3 782", + "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, + "duration": 0.386028955, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784849 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/0/3 ingressOctets=13277967548,egressOctets=6401326765410,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=92368080\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b87bb023-bd66-473d-966e-ea9dfed4b23a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/4 783", + "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, + "duration": 0.472291131, + "executed": 1692789630, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785427 + }, + { + "status": 0, + "executed": 1692785727 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786328 + }, + { + "status": 0, + "executed": 1692786628 + }, + { + "status": 0, + "executed": 1692786928 + }, + { + "status": 0, + "executed": 1692787228 + }, + { + "status": 0, + "executed": 1692787529 + }, + { + "status": 0, + "executed": 1692787829 + }, + { + "status": 0, + "executed": 1692788129 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789030 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789630 + } + ], + "issued": 1692789630, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/0/4 ingressOctets=4766956071520,egressOctets=357299184,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789630, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dcd3bc89-3bc1-4b95-a459-7b62538031db", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789631 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/5 784", + "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, + "duration": 0.380484001, + "executed": 1692789656, + "history": [ + { + "status": 0, + "executed": 1692783651 + }, + { + "status": 0, + "executed": 1692783951 + }, + { + "status": 0, + "executed": 1692784251 + }, + { + "status": 0, + "executed": 1692784551 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785152 + }, + { + "status": 0, + "executed": 1692785452 + }, + { + "status": 0, + "executed": 1692785753 + }, + { + "status": 0, + "executed": 1692786053 + }, + { + "status": 0, + "executed": 1692786353 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786953 + }, + { + "status": 0, + "executed": 1692787253 + }, + { + "status": 0, + "executed": 1692787554 + }, + { + "status": 0, + "executed": 1692787854 + }, + { + "status": 0, + "executed": 1692788154 + }, + { + "status": 0, + "executed": 1692788455 + }, + { + "status": 0, + "executed": 1692788755 + }, + { + "status": 0, + "executed": 1692789055 + }, + { + "status": 0, + "executed": 1692789356 + }, + { + "status": 0, + "executed": 1692789656 + } + ], + "issued": 1692789655, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/0/5 ingressOctets=255710583303044,egressOctets=123818121898565,ingressErrors=2,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789656, + "occurrences": 34828, + "occurrences_watermark": 34828, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1b9d995b-3da1-4af2-bdfe-d0d576d7b6b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789656 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/6 785", + "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, + "duration": 0.349592666, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783668 + }, + { + "status": 0, + "executed": 1692783968 + }, + { + "status": 0, + "executed": 1692784268 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/0/6 ingressOctets=2324575551328521,egressOctets=71745627240352,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eecfe75a-340f-4a30-820d-2ccdcee8fd39", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/0/7 786", + "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, + "duration": 0.355551692, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786661 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/0/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 34829, + "occurrences_watermark": 34829, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "236f3d00-9d3e-4769-9fab-cf3b118b2f61", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789664 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/0 790", + "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, + "duration": 0.349071537, + "executed": 1692789655, + "history": [ + { + "status": 0, + "executed": 1692783650 + }, + { + "status": 0, + "executed": 1692783950 + }, + { + "status": 0, + "executed": 1692784250 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785152 + }, + { + "status": 0, + "executed": 1692785452 + }, + { + "status": 0, + "executed": 1692785752 + }, + { + "status": 0, + "executed": 1692786052 + }, + { + "status": 0, + "executed": 1692786353 + }, + { + "status": 0, + "executed": 1692786653 + }, + { + "status": 0, + "executed": 1692786953 + }, + { + "status": 0, + "executed": 1692787253 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787854 + }, + { + "status": 0, + "executed": 1692788154 + }, + { + "status": 0, + "executed": 1692788454 + }, + { + "status": 0, + "executed": 1692788754 + }, + { + "status": 0, + "executed": 1692789055 + }, + { + "status": 0, + "executed": 1692789355 + }, + { + "status": 0, + "executed": 1692789655 + } + ], + "issued": 1692789655, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/1/0 ingressOctets=2266676302368596,egressOctets=71776423255558,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789655, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "320bb6fa-3b45-4068-b34b-62bf90dcf016", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789656 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/1 787", + "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, + "duration": 0.343442408, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786214 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/1/1 ingressOctets=2488218535840671,egressOctets=906113044417155,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=11067033\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "29961b21-c695-4cfb-91f7-23fef73ec8f0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/2 788", + "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, + "duration": 0.610568666, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "70ccd66e-4ae4-4f8c-99a4-48038a405b5a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/3 789", + "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, + "duration": 0.347704681, + "executed": 1692789683, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786381 + }, + { + "status": 0, + "executed": 1692786682 + }, + { + "status": 0, + "executed": 1692786981 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788482 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789683 + } + ], + "issued": 1692789682, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/1/3 ingressOctets=13028111926,egressOctets=6169808029063,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=99650240\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789683, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eaad646a-a5e4-45aa-9881-7927ca666b3f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789683 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/4 791", + "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, + "duration": 0.330913778, + "executed": 1692789656, + "history": [ + { + "status": 0, + "executed": 1692783651 + }, + { + "status": 0, + "executed": 1692783951 + }, + { + "status": 0, + "executed": 1692784251 + }, + { + "status": 0, + "executed": 1692784551 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785152 + }, + { + "status": 0, + "executed": 1692785452 + }, + { + "status": 0, + "executed": 1692785753 + }, + { + "status": 0, + "executed": 1692786053 + }, + { + "status": 0, + "executed": 1692786353 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786953 + }, + { + "status": 0, + "executed": 1692787253 + }, + { + "status": 0, + "executed": 1692787554 + }, + { + "status": 0, + "executed": 1692787854 + }, + { + "status": 0, + "executed": 1692788154 + }, + { + "status": 0, + "executed": 1692788455 + }, + { + "status": 0, + "executed": 1692788755 + }, + { + "status": 0, + "executed": 1692789055 + }, + { + "status": 0, + "executed": 1692789356 + }, + { + "status": 0, + "executed": 1692789656 + } + ], + "issued": 1692789655, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/1/4 ingressOctets=5838747081511,egressOctets=390163590,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789656, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7f4aa677-3caf-4be6-9bae-b35e77dbaef9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789656 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/5 792", + "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, + "duration": 0.430785098, + "executed": 1692789640, + "history": [ + { + "status": 0, + "executed": 1692783635 + }, + { + "status": 0, + "executed": 1692783935 + }, + { + "status": 0, + "executed": 1692784235 + }, + { + "status": 0, + "executed": 1692784535 + }, + { + "status": 0, + "executed": 1692784836 + }, + { + "status": 0, + "executed": 1692785136 + }, + { + "status": 0, + "executed": 1692785436 + }, + { + "status": 0, + "executed": 1692785737 + }, + { + "status": 0, + "executed": 1692786037 + }, + { + "status": 0, + "executed": 1692786337 + }, + { + "status": 0, + "executed": 1692786638 + }, + { + "status": 0, + "executed": 1692786937 + }, + { + "status": 0, + "executed": 1692787237 + }, + { + "status": 0, + "executed": 1692787538 + }, + { + "status": 0, + "executed": 1692787838 + }, + { + "status": 0, + "executed": 1692788138 + }, + { + "status": 0, + "executed": 1692788439 + }, + { + "status": 0, + "executed": 1692788739 + }, + { + "status": 0, + "executed": 1692789039 + }, + { + "status": 0, + "executed": 1692789340 + }, + { + "status": 0, + "executed": 1692789640 + } + ], + "issued": 1692789639, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/1/5 ingressOctets=861013929966,egressOctets=1499611844908,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789640, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1719facd-2901-4329-8f7e-a79f82c03195", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789640 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/6 793", + "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, + "duration": 0.460943844, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784555 + }, + { + "status": 0, + "executed": 1692784855 + }, + { + "status": 0, + "executed": 1692785155 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786356 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/1/6 ingressOctets=13016685914,egressOctets=5987447444043,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=90379824\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-1-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d8e26461-bf25-4569-af10-2fa25e4b38a2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/1/7 794", + "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, + "duration": 0.379568495, + "executed": 1692789644, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785741 + }, + { + "status": 0, + "executed": 1692786041 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786642 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787843 + }, + { + "status": 0, + "executed": 1692788143 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789044 + }, + { + "status": 0, + "executed": 1692789345 + }, + { + "status": 0, + "executed": 1692789644 + } + ], + "issued": 1692789644, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/1/7 ingressOctets=5859796558242,egressOctets=357298454,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789644, + "occurrences": 15544, + "occurrences_watermark": 15544, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-1-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f44ca080-6a60-4d46-8e14-9fa914a8c331", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789645 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/0 795", + "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, + "duration": 0.480057109, + "executed": 1692789638, + "history": [ + { + "status": 0, + "executed": 1692783634 + }, + { + "status": 0, + "executed": 1692783934 + }, + { + "status": 0, + "executed": 1692784234 + }, + { + "status": 0, + "executed": 1692784534 + }, + { + "status": 0, + "executed": 1692784835 + }, + { + "status": 0, + "executed": 1692785135 + }, + { + "status": 0, + "executed": 1692785435 + }, + { + "status": 0, + "executed": 1692785735 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786336 + }, + { + "status": 0, + "executed": 1692786636 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787236 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787837 + }, + { + "status": 0, + "executed": 1692788137 + }, + { + "status": 0, + "executed": 1692788437 + }, + { + "status": 0, + "executed": 1692788737 + }, + { + "status": 0, + "executed": 1692789038 + }, + { + "status": 0, + "executed": 1692789338 + }, + { + "status": 0, + "executed": 1692789638 + } + ], + "issued": 1692789638, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/2/0 ingressOctets=43713735661,egressOctets=953860596314,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789638, + "occurrences": 15545, + "occurrences_watermark": 15545, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7bc334aa-7b15-4f92-9017-c8034b635db0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789639 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/0.220 1190", + "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, + "duration": 0.38473143, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/2/0.220 ingressOctets=3578,egressOctets=361794058,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-2-0.220", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bed60266-a419-4840-8a55-6481c59839f0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/0.300 1199", + "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, + "duration": 0.380646815, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/2/0.300 ingressOctets=43713607908,egressOctets=953180397695,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-2-0.300", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "da28b751-eb09-44f6-939d-361c864a5347", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/1 796", + "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, + "duration": 0.365398479, + "executed": 1692789666, + "history": [ + { + "status": 0, + "executed": 1692783662 + }, + { + "status": 0, + "executed": 1692783962 + }, + { + "status": 0, + "executed": 1692784262 + }, + { + "status": 0, + "executed": 1692784562 + }, + { + "status": 0, + "executed": 1692784862 + }, + { + "status": 0, + "executed": 1692785162 + }, + { + "status": 0, + "executed": 1692785462 + }, + { + "status": 0, + "executed": 1692785763 + }, + { + "status": 0, + "executed": 1692786063 + }, + { + "status": 0, + "executed": 1692786363 + }, + { + "status": 0, + "executed": 1692786664 + }, + { + "status": 0, + "executed": 1692786963 + }, + { + "status": 0, + "executed": 1692787264 + }, + { + "status": 0, + "executed": 1692787564 + }, + { + "status": 0, + "executed": 1692787864 + }, + { + "status": 0, + "executed": 1692788164 + }, + { + "status": 0, + "executed": 1692788465 + }, + { + "status": 0, + "executed": 1692788765 + }, + { + "status": 0, + "executed": 1692789065 + }, + { + "status": 0, + "executed": 1692789366 + }, + { + "status": 0, + "executed": 1692789666 + } + ], + "issued": 1692789665, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789666, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5a78f931-41d0-4d20-826e-55fb2c4d5ee1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789666 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/2 859", + "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, + "duration": 0.618396352, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/2/2 ingressOctets=404280427425905,egressOctets=146325989523285,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cc302967-579f-4cc7-ad41-7b3b903871ac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/3 812", + "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, + "duration": 0.3661122, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/2/3 ingressOctets=45253234596626,egressOctets=2473292134316099,ingressErrors=21,egressErrors=0,ingressDiscards=0,egressDiscards=195153\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "731b1f70-1947-4de7-96a5-f8147546bd86", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/4 852", + "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, + "duration": 0.384297435, + "executed": 1692789665, + "history": [ + { + "status": 0, + "executed": 1692783661 + }, + { + "status": 0, + "executed": 1692783961 + }, + { + "status": 0, + "executed": 1692784261 + }, + { + "status": 0, + "executed": 1692784561 + }, + { + "status": 0, + "executed": 1692784861 + }, + { + "status": 0, + "executed": 1692785161 + }, + { + "status": 0, + "executed": 1692785461 + }, + { + "status": 0, + "executed": 1692785762 + }, + { + "status": 0, + "executed": 1692786062 + }, + { + "status": 0, + "executed": 1692786362 + }, + { + "status": 0, + "executed": 1692786663 + }, + { + "status": 0, + "executed": 1692786962 + }, + { + "status": 0, + "executed": 1692787263 + }, + { + "status": 0, + "executed": 1692787563 + }, + { + "status": 0, + "executed": 1692787863 + }, + { + "status": 0, + "executed": 1692788163 + }, + { + "status": 0, + "executed": 1692788464 + }, + { + "status": 0, + "executed": 1692788764 + }, + { + "status": 0, + "executed": 1692789064 + }, + { + "status": 0, + "executed": 1692789365 + }, + { + "status": 0, + "executed": 1692789665 + } + ], + "issued": 1692789664, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789665, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7ece7307-bb42-48cd-a7fd-183cc52f096f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789665 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/5 860", + "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, + "duration": 0.370511543, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/2/5 ingressOctets=13026974318,egressOctets=6148094659261,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=100156694\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "55e36317-592e-477a-b45c-f7eca5f32748", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789570 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/6 863", + "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, + "duration": 0.400550912, + "executed": 1692789569, + "history": [ + { + "status": 0, + "executed": 1692783563 + }, + { + "status": 0, + "executed": 1692783863 + }, + { + "status": 0, + "executed": 1692784163 + }, + { + "status": 0, + "executed": 1692784465 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785365 + }, + { + "status": 0, + "executed": 1692785665 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786566 + }, + { + "status": 0, + "executed": 1692786866 + }, + { + "status": 0, + "executed": 1692787166 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787767 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788668 + }, + { + "status": 0, + "executed": 1692788968 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789569 + } + ], + "issued": 1692789568, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/2/6 ingressOctets=5248134350903,egressOctets=357285742,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789569, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bfc284fb-5b3c-488d-b159-0b42b8aef28f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789569 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/2/7 866", + "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, + "duration": 0.348559993, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/2/7 ingressOctets=856833576,egressOctets=348139588,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "580e59b2-372a-4c82-8a15-1a08bbd1a053", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/0 867", + "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, + "duration": 0.622400747, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/3/0 ingressOctets=141392194144816,egressOctets=72585838844112,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 34826, + "occurrences_watermark": 34826, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e9da1879-7712-4d59-87fd-2e8bd90cce5d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/1 868", + "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, + "duration": 0.365207748, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783586 + }, + { + "status": 0, + "executed": 1692783886 + }, + { + "status": 0, + "executed": 1692784186 + }, + { + "status": 0, + "executed": 1692784486 + }, + { + "status": 0, + "executed": 1692784786 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785987 + }, + { + "status": 0, + "executed": 1692786287 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787488 + }, + { + "status": 0, + "executed": 1692787789 + }, + { + "status": 0, + "executed": 1692788089 + }, + { + "status": 0, + "executed": 1692788389 + }, + { + "status": 0, + "executed": 1692788690 + }, + { + "status": 0, + "executed": 1692788990 + }, + { + "status": 0, + "executed": 1692789290 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789590, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/3/1 ingressOctets=131842665082841,egressOctets=73427731373755,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ab7be8b8-6492-4c6f-b183-8f62e046ce7c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789591 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/2 870", + "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, + "duration": 0.367428078, + "executed": 1692789690, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783987 + }, + { + "status": 0, + "executed": 1692784287 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785788 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787289 + }, + { + "status": 0, + "executed": 1692787589 + }, + { + "status": 0, + "executed": 1692787889 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788790 + }, + { + "status": 0, + "executed": 1692789090 + }, + { + "status": 0, + "executed": 1692789390 + }, + { + "status": 0, + "executed": 1692789690 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/3/2 ingressOctets=48202890111400,egressOctets=2476474314957288,ingressErrors=6,egressErrors=0,ingressDiscards=0,egressDiscards=52368\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789690, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "82fe5cfc-aaf4-46f7-a60f-59b30a769935", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789690 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/3 871", + "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, + "duration": 0.369048575, + "executed": 1692789697, + "history": [ + { + "status": 0, + "executed": 1692783694 + }, + { + "status": 0, + "executed": 1692783994 + }, + { + "status": 0, + "executed": 1692784294 + }, + { + "status": 0, + "executed": 1692784595 + }, + { + "status": 0, + "executed": 1692784895 + }, + { + "status": 0, + "executed": 1692785195 + }, + { + "status": 0, + "executed": 1692785495 + }, + { + "status": 0, + "executed": 1692785795 + }, + { + "status": 0, + "executed": 1692786096 + }, + { + "status": 0, + "executed": 1692786396 + }, + { + "status": 0, + "executed": 1692786696 + }, + { + "status": 0, + "executed": 1692786996 + }, + { + "status": 0, + "executed": 1692787296 + }, + { + "status": 0, + "executed": 1692787596 + }, + { + "status": 0, + "executed": 1692787896 + }, + { + "status": 0, + "executed": 1692788196 + }, + { + "status": 0, + "executed": 1692788497 + }, + { + "status": 0, + "executed": 1692788797 + }, + { + "status": 0, + "executed": 1692789097 + }, + { + "status": 0, + "executed": 1692789397 + }, + { + "status": 0, + "executed": 1692789697 + } + ], + "issued": 1692789697, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/3/3 ingressOctets=1968940800256,egressOctets=24372803880432,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789697, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5cf37080-121f-47c5-9f07-5726d5bc3e90", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789697 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/4 872", + "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, + "duration": 0.418434516, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/3/4 ingressOctets=2314075039824522,egressOctets=8087943236,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b627c470-77f1-4138-86ef-8d4e3fa6e226", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/5 873", + "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, + "duration": 0.478819926, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783678 + }, + { + "status": 0, + "executed": 1692783978 + }, + { + "status": 0, + "executed": 1692784278 + }, + { + "status": 0, + "executed": 1692784578 + }, + { + "status": 0, + "executed": 1692784878 + }, + { + "status": 0, + "executed": 1692785178 + }, + { + "status": 0, + "executed": 1692785478 + }, + { + "status": 0, + "executed": 1692785779 + }, + { + "status": 0, + "executed": 1692786079 + }, + { + "status": 0, + "executed": 1692786379 + }, + { + "status": 0, + "executed": 1692786679 + }, + { + "status": 0, + "executed": 1692786979 + }, + { + "status": 0, + "executed": 1692787280 + }, + { + "status": 0, + "executed": 1692787580 + }, + { + "status": 0, + "executed": 1692787880 + }, + { + "status": 0, + "executed": 1692788180 + }, + { + "status": 0, + "executed": 1692788480 + }, + { + "status": 0, + "executed": 1692788781 + }, + { + "status": 0, + "executed": 1692789081 + }, + { + "status": 0, + "executed": 1692789381 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "de064728-ecf7-4d78-96a1-d3e9dcf28a65", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/6 874", + "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, + "duration": 0.401275554, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/3/6 ingressOctets=342093254,egressOctets=3382,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "12f975d2-c15e-40d5-ae58-29ed0eb0ce49", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/6.0 831", + "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, + "duration": 0.366561137, + "executed": 1692789662, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784559 + }, + { + "status": 0, + "executed": 1692784859 + }, + { + "status": 0, + "executed": 1692785159 + }, + { + "status": 0, + "executed": 1692785459 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786360 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786960 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787561 + }, + { + "status": 0, + "executed": 1692787861 + }, + { + "status": 0, + "executed": 1692788161 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789062 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789662 + } + ], + "issued": 1692789662, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/3/6.0 ingressOctets=342096388,egressOctets=3382,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789662, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-3-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a78dddce-de8e-47d7-943a-e01424347ff0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-10/3/7 875", + "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, + "duration": 0.398973042, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-10/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-10-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "faa95ad1-3fe3-4ad4-a611-9598b99f8bbb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/0/0 586", + "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, + "duration": 0.380832045, + "executed": 1692789686, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785784 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786685 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787285 + }, + { + "status": 0, + "executed": 1692787585 + }, + { + "status": 0, + "executed": 1692787885 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788786 + }, + { + "status": 0, + "executed": 1692789086 + }, + { + "status": 0, + "executed": 1692789386 + }, + { + "status": 0, + "executed": 1692789686 + } + ], + "issued": 1692789686, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789686, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3c90df75-486d-4a1d-a088-1ff5f90694a5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789686 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/0/1 587", + "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, + "duration": 0.372460456, + "executed": 1692789689, + "history": [ + { + "status": 0, + "executed": 1692783686 + }, + { + "status": 0, + "executed": 1692783987 + }, + { + "status": 0, + "executed": 1692784287 + }, + { + "status": 0, + "executed": 1692784587 + }, + { + "status": 0, + "executed": 1692784887 + }, + { + "status": 0, + "executed": 1692785187 + }, + { + "status": 0, + "executed": 1692785487 + }, + { + "status": 0, + "executed": 1692785788 + }, + { + "status": 0, + "executed": 1692786088 + }, + { + "status": 0, + "executed": 1692786388 + }, + { + "status": 0, + "executed": 1692786688 + }, + { + "status": 0, + "executed": 1692786988 + }, + { + "status": 0, + "executed": 1692787289 + }, + { + "status": 0, + "executed": 1692787589 + }, + { + "status": 0, + "executed": 1692787889 + }, + { + "status": 0, + "executed": 1692788189 + }, + { + "status": 0, + "executed": 1692788489 + }, + { + "status": 0, + "executed": 1692788790 + }, + { + "status": 0, + "executed": 1692789090 + }, + { + "status": 0, + "executed": 1692789390 + }, + { + "status": 0, + "executed": 1692789689 + } + ], + "issued": 1692789689, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/0/1 ingressOctets=139636759229839,egressOctets=73904871935713,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789689, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "36939f64-b11e-4c93-b52e-6d69b9124b77", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789690 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/0/2 588", + "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, + "duration": 0.455993155, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3711cd33-27d7-4a3e-9d43-30736add2ac4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/0/3 589", + "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, + "duration": 0.402660062, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/0/3 ingressOctets=150250134222755,egressOctets=73578142745718,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2b472ad1-dc98-44b8-b9cb-f798ed713292", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/1/0 590", + "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, + "duration": 0.3928722, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783668 + }, + { + "status": 0, + "executed": 1692783968 + }, + { + "status": 0, + "executed": 1692784268 + }, + { + "status": 0, + "executed": 1692784569 + }, + { + "status": 0, + "executed": 1692784869 + }, + { + "status": 0, + "executed": 1692785169 + }, + { + "status": 0, + "executed": 1692785469 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786370 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786970 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787571 + }, + { + "status": 0, + "executed": 1692787871 + }, + { + "status": 0, + "executed": 1692788171 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789072 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789672, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/1/0 ingressOctets=855214102,egressOctets=347971095,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c5407203-0fd9-4d56-ad6b-6c034e4d2358", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789673 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/1/1 591", + "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, + "duration": 0.337708974, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787434 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788035 + }, + { + "status": 0, + "executed": 1692788335 + }, + { + "status": 0, + "executed": 1692788635 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789535, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/1/1 ingressOctets=2524072375305487,egressOctets=906311993127294,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=897707\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c9c572a-bea2-46b3-9e9a-9f42175d9dee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789536 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/1/2 592", + "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, + "duration": 0.437734355, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786302 + }, + { + "status": 0, + "executed": 1692786602 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/1/2 ingressOctets=3341337032533385,egressOctets=766263640617433,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=1388118\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bbe5dceb-05dc-4058-9bb4-18b433ffb774", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/1/3 593", + "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, + "duration": 0.363723275, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/1/3 ingressOctets=49522679850,egressOctets=40289470001,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c111767a-91ca-4cb2-a248-ed07203f050c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/1/3.0 942", + "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, + "duration": 0.409595658, + "executed": 1692789656, + "history": [ + { + "status": 0, + "executed": 1692783651 + }, + { + "status": 0, + "executed": 1692783951 + }, + { + "status": 0, + "executed": 1692784251 + }, + { + "status": 0, + "executed": 1692784551 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785152 + }, + { + "status": 0, + "executed": 1692785452 + }, + { + "status": 0, + "executed": 1692785753 + }, + { + "status": 0, + "executed": 1692786053 + }, + { + "status": 0, + "executed": 1692786353 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786953 + }, + { + "status": 0, + "executed": 1692787254 + }, + { + "status": 0, + "executed": 1692787554 + }, + { + "status": 0, + "executed": 1692787854 + }, + { + "status": 0, + "executed": 1692788154 + }, + { + "status": 0, + "executed": 1692788455 + }, + { + "status": 0, + "executed": 1692788755 + }, + { + "status": 0, + "executed": 1692789055 + }, + { + "status": 0, + "executed": 1692789356 + }, + { + "status": 0, + "executed": 1692789656 + } + ], + "issued": 1692789655, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/1/3.0 ingressOctets=49522677526,egressOctets=40289467321,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789656, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-1-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "868f3884-9de6-4d14-b794-053bb3de325b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789656 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/0 594", + "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, + "duration": 0.372168991, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785785 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786686 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787286 + }, + { + "status": 0, + "executed": 1692787586 + }, + { + "status": 0, + "executed": 1692787886 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788787 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789686, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/0 ingressOctets=8174769673,egressOctets=6241530427,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 34830, + "occurrences_watermark": 34830, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc7fe46e-fdb3-4561-90af-0b7b16bd3f26", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789687 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/0.0 1260", + "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, + "duration": 0.439525662, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783691 + }, + { + "status": 0, + "executed": 1692783991 + }, + { + "status": 0, + "executed": 1692784291 + }, + { + "status": 0, + "executed": 1692784591 + }, + { + "status": 0, + "executed": 1692784891 + }, + { + "status": 0, + "executed": 1692785191 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785792 + }, + { + "status": 0, + "executed": 1692786092 + }, + { + "status": 0, + "executed": 1692786392 + }, + { + "status": 0, + "executed": 1692786692 + }, + { + "status": 0, + "executed": 1692786992 + }, + { + "status": 0, + "executed": 1692787293 + }, + { + "status": 0, + "executed": 1692787593 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788794 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/0.0 ingressOctets=8174770046,egressOctets=6241530624,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "88b4c090-7632-4a3b-9d6b-4c812c6fc853", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1 595", + "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, + "duration": 0.401512383, + "executed": 1692789439, + "history": [ + { + "status": 0, + "executed": 1692783436 + }, + { + "status": 0, + "executed": 1692783736 + }, + { + "status": 0, + "executed": 1692784036 + }, + { + "status": 0, + "executed": 1692784336 + }, + { + "status": 0, + "executed": 1692784636 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785236 + }, + { + "status": 0, + "executed": 1692785536 + }, + { + "status": 0, + "executed": 1692785837 + }, + { + "status": 0, + "executed": 1692786137 + }, + { + "status": 0, + "executed": 1692786438 + }, + { + "status": 0, + "executed": 1692786738 + }, + { + "status": 0, + "executed": 1692787038 + }, + { + "status": 0, + "executed": 1692787338 + }, + { + "status": 0, + "executed": 1692787638 + }, + { + "status": 0, + "executed": 1692787939 + }, + { + "status": 0, + "executed": 1692788239 + }, + { + "status": 0, + "executed": 1692788539 + }, + { + "status": 0, + "executed": 1692788839 + }, + { + "status": 0, + "executed": 1692789139 + }, + { + "status": 0, + "executed": 1692789439 + } + ], + "issued": 1692789439, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/1 ingressOctets=42377362251,egressOctets=48751949048,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789439, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "78db2d0f-ff37-46ec-bb57-c9dd3f088b7f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789440 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.101 937", + "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, + "duration": 0.428839726, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/1.101 ingressOctets=35975921677,egressOctets=42344002976,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-1.101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9010bca8-2a91-4fc6-ac60-3ad5c8bfc5c1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.103 1266", + "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, + "duration": 0.373030931, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787434 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788035 + }, + { + "status": 0, + "executed": 1692788335 + }, + { + "status": 0, + "executed": 1692788635 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789535, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/1.103 ingressOctets=3008745510,egressOctets=3199629680,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-1.103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9667cda5-a608-4544-91b2-873f7d0cfa6c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789536 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.104 1342", + "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, + "duration": 0.379912741, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/1.104 ingressOctets=302,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-1.104", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "752d3cac-d9ac-4d7e-8755-1613a810a7be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.1213 1319", + "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, + "duration": 0.332561626, + "executed": 1692789583, + "history": [ + { + "status": 0, + "executed": 1692783579 + }, + { + "status": 0, + "executed": 1692783879 + }, + { + "status": 0, + "executed": 1692784179 + }, + { + "status": 0, + "executed": 1692784479 + }, + { + "status": 0, + "executed": 1692784779 + }, + { + "status": 0, + "executed": 1692785079 + }, + { + "status": 0, + "executed": 1692785379 + }, + { + "status": 0, + "executed": 1692785679 + }, + { + "status": 0, + "executed": 1692785980 + }, + { + "status": 0, + "executed": 1692786280 + }, + { + "status": 0, + "executed": 1692786580 + }, + { + "status": 0, + "executed": 1692786880 + }, + { + "status": 0, + "executed": 1692787180 + }, + { + "status": 0, + "executed": 1692787481 + }, + { + "status": 0, + "executed": 1692787781 + }, + { + "status": 0, + "executed": 1692788082 + }, + { + "status": 0, + "executed": 1692788382 + }, + { + "status": 0, + "executed": 1692788682 + }, + { + "status": 0, + "executed": 1692788982 + }, + { + "status": 0, + "executed": 1692789283 + }, + { + "status": 0, + "executed": 1692789583 + } + ], + "issued": 1692789582, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/1.1213 ingressOctets=3019291344,egressOctets=3207483877,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789583, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-1.1213", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ecc15abb-b578-4dba-bfb2-989f0abdd456", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789583 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.201 829", + "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, + "duration": 0.442568798, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/1.201 ingressOctets=117933515,egressOctets=40826,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-1.201", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b4572aae-252b-4ee5-8f5d-6c236bd7ff32", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789628 + }, + { + "check": { + "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, + "duration": 0.443186104, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783603 + }, + { + "status": 0, + "executed": 1692783903 + }, + { + "status": 0, + "executed": 1692784203 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786605 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/1.559 ingressOctets=228844656,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 14321, + "occurrences_watermark": 14321, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-1.559", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "92fe4a9b-e7d1-4806-b0c1-a5984eb89d4c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/1.702 1318", + "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, + "duration": 0.461878078, + "executed": 1692789683, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786382 + }, + { + "status": 0, + "executed": 1692786682 + }, + { + "status": 0, + "executed": 1692786982 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788483 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789683 + } + ], + "issued": 1692789683, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/1.702 ingressOctets=26680924,egressOctets=835246,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789683, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-1.702", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8aef6861-ded0-41ae-afd6-83bb43aa3f10", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789684 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/2 596", + "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, + "duration": 0.388455942, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/2 ingressOctets=157916677109,egressOctets=269428141562,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0c3a6240-7eda-463c-96f9-0f624e55c159", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/2.22 694", + "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, + "duration": 0.449124655, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/2.22 ingressOctets=157914404821,egressOctets=268982637583,ingressErrors=0,egressErrors=0,ingressOctetsv6=69286484297,egressOctetsv6=146217563723,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-2.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ae1f7e6f-0d57-44b4-a277-582c3999064a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/2.33 726", + "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, + "duration": 0.388856253, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/2.33 ingressOctets=2394488,egressOctets=100781644,ingressErrors=0,egressErrors=0,ingressOctetsv6=376,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-2.33", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f8a45a27-36c8-4df4-99d7-4df55df64f0c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/3 597", + "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, + "duration": 0.40570103, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783858 + }, + { + "status": 0, + "executed": 1692784158 + }, + { + "status": 0, + "executed": 1692784458 + }, + { + "status": 0, + "executed": 1692784758 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/3 ingressOctets=853976929,egressOctets=986888227,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "db337cf2-9dec-4f2f-b764-8287cbf4965f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789562 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/2/3.0 732", + "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, + "duration": 0.385730571, + "executed": 1692789699, + "history": [ + { + "status": 0, + "executed": 1692783696 + }, + { + "status": 0, + "executed": 1692783996 + }, + { + "status": 0, + "executed": 1692784296 + }, + { + "status": 0, + "executed": 1692784597 + }, + { + "status": 0, + "executed": 1692784897 + }, + { + "status": 0, + "executed": 1692785197 + }, + { + "status": 0, + "executed": 1692785497 + }, + { + "status": 0, + "executed": 1692785797 + }, + { + "status": 0, + "executed": 1692786097 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786698 + }, + { + "status": 0, + "executed": 1692786998 + }, + { + "status": 0, + "executed": 1692787298 + }, + { + "status": 0, + "executed": 1692787598 + }, + { + "status": 0, + "executed": 1692787898 + }, + { + "status": 0, + "executed": 1692788198 + }, + { + "status": 0, + "executed": 1692788499 + }, + { + "status": 0, + "executed": 1692788799 + }, + { + "status": 0, + "executed": 1692789099 + }, + { + "status": 0, + "executed": 1692789399 + }, + { + "status": 0, + "executed": 1692789699 + } + ], + "issued": 1692789699, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/2/3.0 ingressOctets=853971165,egressOctets=1034017145,ingressErrors=0,egressErrors=0,ingressOctetsv6=89986822,egressOctetsv6=19498324,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789699, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-2-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ac08f2eb-42bc-4807-8bda-207231fcb366", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789700 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/3/0 598", + "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, + "duration": 0.415302574, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/3/0 ingressOctets=638646644229677,egressOctets=1206993037190141,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "12289659-bfb7-4572-b616-799a07744d8d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/3/1 599", + "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, + "duration": 0.357011108, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783587 + }, + { + "status": 0, + "executed": 1692783887 + }, + { + "status": 0, + "executed": 1692784187 + }, + { + "status": 0, + "executed": 1692784487 + }, + { + "status": 0, + "executed": 1692784787 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785987 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787189 + }, + { + "status": 0, + "executed": 1692787489 + }, + { + "status": 0, + "executed": 1692787789 + }, + { + "status": 0, + "executed": 1692788090 + }, + { + "status": 0, + "executed": 1692788390 + }, + { + "status": 0, + "executed": 1692788690 + }, + { + "status": 0, + "executed": 1692788990 + }, + { + "status": 0, + "executed": 1692789291 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789590, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/3/1 ingressOctets=3338167158643931,egressOctets=766742332704022,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=1490250\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b30fcf11-d925-4bdd-9e7e-17a7e44d9517", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789591 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/3/2 600", + "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, + "duration": 0.402195081, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/3/2 ingressOctets=27498995303259,egressOctets=4103241025561,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5bed3ac3-e806-46d3-8e29-8cae9cc20d94", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-3/3/3 601", + "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, + "duration": 0.351574162, + "executed": 1692789700, + "history": [ + { + "status": 0, + "executed": 1692783696 + }, + { + "status": 0, + "executed": 1692783996 + }, + { + "status": 0, + "executed": 1692784296 + }, + { + "status": 0, + "executed": 1692784597 + }, + { + "status": 0, + "executed": 1692784897 + }, + { + "status": 0, + "executed": 1692785197 + }, + { + "status": 0, + "executed": 1692785497 + }, + { + "status": 0, + "executed": 1692785797 + }, + { + "status": 0, + "executed": 1692786097 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786698 + }, + { + "status": 0, + "executed": 1692786998 + }, + { + "status": 0, + "executed": 1692787298 + }, + { + "status": 0, + "executed": 1692787598 + }, + { + "status": 0, + "executed": 1692787898 + }, + { + "status": 0, + "executed": 1692788198 + }, + { + "status": 0, + "executed": 1692788499 + }, + { + "status": 0, + "executed": 1692788799 + }, + { + "status": 0, + "executed": 1692789100 + }, + { + "status": 0, + "executed": 1692789400 + }, + { + "status": 0, + "executed": 1692789700 + } + ], + "issued": 1692789699, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-3/3/3 ingressOctets=288,egressOctets=44003040,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789700, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-3-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "63adceca-05d4-48e7-a9db-d1d370821271", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789700 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/0/0 735", + "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, + "duration": 0.397282926, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/0/0 ingressOctets=2524577742439980,egressOctets=1090053188011733,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=16695384\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e67b7b65-46d9-45ed-b18e-fdd27742adca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/0/1 743", + "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, + "duration": 0.370914943, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786408 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789108 + }, + { + "status": 0, + "executed": 1692789408 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/0/1 ingressOctets=2285512004621289,egressOctets=8454330611,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3598bfd8-75ea-414a-bc18-adbac14445e3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789708 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/0/2 755", + "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, + "duration": 0.411526037, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/0/2 ingressOctets=4745022070,egressOctets=14357702756,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a631423-03e2-4ed4-9b1a-f47d320e0964", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/0/3 804", + "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, + "duration": 0.38918737, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/0/3 ingressOctets=19850125996,egressOctets=22011135669,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 15543, + "occurrences_watermark": 15543, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b5ca18ce-9c3f-4c4a-a60e-cb84f63917c0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/0/4 805", + "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, + "duration": 0.417536865, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/0/4 ingressOctets=42174531519126,egressOctets=41850187218165,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "54753b54-51f5-4e95-a07e-9daa0e929eed", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/0/5 807", + "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, + "duration": 0.338610013, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784617 + }, + { + "status": 0, + "executed": 1692784917 + }, + { + "status": 0, + "executed": 1692785217 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787319 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/0/5 ingressOctets=60,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b5c39702-a730-492c-a9b0-5713a6408772", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/0/5.0 1286", + "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, + "duration": 0.411720251, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/0/5.0 ingressOctets=60,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-0-5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b8a91b6e-6d34-4b23-80c8-a84f95909eac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/0/6 808", + "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, + "duration": 0.440182695, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784617 + }, + { + "status": 0, + "executed": 1692784917 + }, + { + "status": 0, + "executed": 1692785217 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787319 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/0/6 ingressOctets=141917460,egressOctets=305450496,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "90467e06-b44f-4e1f-9f09-8c2d50b37997", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/0/6.1626 835", + "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, + "duration": 0.398169355, + "executed": 1692789452, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784048 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785249 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787351 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788852 + }, + { + "status": 0, + "executed": 1692789152 + }, + { + "status": 0, + "executed": 1692789452 + } + ], + "issued": 1692789452, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/0/6.1626 ingressOctets=1700244,egressOctets=553068,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789452, + "occurrences": 33391, + "occurrences_watermark": 33391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-0-6.1626", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dbdfbf2b-c634-43a0-bbc7-355f8eed520d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/0/7 815", + "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, + "duration": 0.394938744, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/0/7 ingressOctets=13811037755,egressOctets=14182515260,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "79a40858-4f07-4aed-8a2b-699895c8a2fd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/0 909", + "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, + "duration": 0.35699697, + "executed": 1692789698, + "history": [ + { + "status": 0, + "executed": 1692783695 + }, + { + "status": 0, + "executed": 1692783995 + }, + { + "status": 0, + "executed": 1692784295 + }, + { + "status": 0, + "executed": 1692784596 + }, + { + "status": 0, + "executed": 1692784896 + }, + { + "status": 0, + "executed": 1692785196 + }, + { + "status": 0, + "executed": 1692785496 + }, + { + "status": 0, + "executed": 1692785796 + }, + { + "status": 0, + "executed": 1692786096 + }, + { + "status": 0, + "executed": 1692786397 + }, + { + "status": 0, + "executed": 1692786697 + }, + { + "status": 0, + "executed": 1692786997 + }, + { + "status": 0, + "executed": 1692787297 + }, + { + "status": 0, + "executed": 1692787597 + }, + { + "status": 0, + "executed": 1692787897 + }, + { + "status": 0, + "executed": 1692788197 + }, + { + "status": 0, + "executed": 1692788498 + }, + { + "status": 0, + "executed": 1692788798 + }, + { + "status": 0, + "executed": 1692789098 + }, + { + "status": 0, + "executed": 1692789398 + }, + { + "status": 0, + "executed": 1692789698 + } + ], + "issued": 1692789698, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789698, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3bdee2a2-d218-4475-8f3b-68cdd5589fa4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789699 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/1 910", + "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, + "duration": 0.48876759, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/1 ingressOctets=2543141888659475,egressOctets=1088986681266493,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=208300\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3ac614b6-5f37-49de-ac6e-ed59f241813b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/2 913", + "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, + "duration": 0.375804677, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786661 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "78bcd44b-863e-422a-b9b4-812a30e2ab40", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789664 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/3 939", + "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, + "duration": 0.586912924, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/3 ingressOctets=46052775272867,egressOctets=2472201967646594,ingressErrors=128,egressErrors=0,ingressDiscards=0,egressDiscards=211727\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "740c79ef-8268-42c1-8b6d-7151dd9d4d83", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/4 988", + "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, + "duration": 0.351198314, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/4 ingressOctets=7900329602279,egressOctets=12335189642075,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bf96b9bd-1357-4956-b2b5-264311e81393", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/5 1012", + "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, + "duration": 0.430344263, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783668 + }, + { + "status": 0, + "executed": 1692783968 + }, + { + "status": 0, + "executed": 1692784268 + }, + { + "status": 0, + "executed": 1692784569 + }, + { + "status": 0, + "executed": 1692784869 + }, + { + "status": 0, + "executed": 1692785169 + }, + { + "status": 0, + "executed": 1692785469 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786370 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786970 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787571 + }, + { + "status": 0, + "executed": 1692787871 + }, + { + "status": 0, + "executed": 1692788171 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789072 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789672, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/5 ingressOctets=7559041978638,egressOctets=12432765796560,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "394456e8-7eff-4c75-895c-f3f76186aaf5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789673 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/6 1080", + "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, + "duration": 0.374501413, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/6 ingressOctets=9825748665,egressOctets=8648558709,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f48a88ff-b173-46d1-9953-973fb72cf245", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/6.1304 876", + "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, + "duration": 0.394177443, + "executed": 1692789440, + "history": [ + { + "status": 0, + "executed": 1692783436 + }, + { + "status": 0, + "executed": 1692783736 + }, + { + "status": 0, + "executed": 1692784036 + }, + { + "status": 0, + "executed": 1692784336 + }, + { + "status": 0, + "executed": 1692784636 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785237 + }, + { + "status": 0, + "executed": 1692785537 + }, + { + "status": 0, + "executed": 1692785837 + }, + { + "status": 0, + "executed": 1692786137 + }, + { + "status": 0, + "executed": 1692786438 + }, + { + "status": 0, + "executed": 1692786738 + }, + { + "status": 0, + "executed": 1692787038 + }, + { + "status": 0, + "executed": 1692787339 + }, + { + "status": 0, + "executed": 1692787639 + }, + { + "status": 0, + "executed": 1692787939 + }, + { + "status": 0, + "executed": 1692788239 + }, + { + "status": 0, + "executed": 1692788539 + }, + { + "status": 0, + "executed": 1692788840 + }, + { + "status": 0, + "executed": 1692789140 + }, + { + "status": 0, + "executed": 1692789440 + } + ], + "issued": 1692789440, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/6.1304 ingressOctets=3419823327,egressOctets=18963071,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789440, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-6.1304", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ec83dc9d-aa59-4d3f-93d7-5427b08a8de1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789440 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/6.1306 851", + "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, + "duration": 0.391921169, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/6.1306 ingressOctets=148259,egressOctets=336305135,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 15546, + "occurrences_watermark": 15546, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-6.1306", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aa000777-d474-4bce-b6e0-f1cbc4301685", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/6.1624 836", + "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, + "duration": 0.361471752, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787307 + }, + { + "status": 0, + "executed": 1692787607 + }, + { + "status": 0, + "executed": 1692787907 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788808 + }, + { + "status": 0, + "executed": 1692789108 + }, + { + "status": 0, + "executed": 1692789408 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/6.1624 ingressOctets=319818,egressOctets=316768,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 15552, + "occurrences_watermark": 15552, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-6.1624", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "820923f0-1103-4af2-b5ef-104b523f6a02", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/6.2702 1020", + "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, + "duration": 0.382268721, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/6.2702 ingressOctets=6328189847,egressOctets=7875988441,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 15545, + "occurrences_watermark": 15545, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-6.2702", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1816019c-6fcf-41d2-a377-2bd317de4462", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/1/7 1082", + "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, + "duration": 0.394543222, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785785 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786686 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787286 + }, + { + "status": 0, + "executed": 1692787586 + }, + { + "status": 0, + "executed": 1692787886 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788787 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789687, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/1/7 ingressOctets=125069737696,egressOctets=851299822560,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 15545, + "occurrences_watermark": 15545, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-1-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aa2a218d-39e9-43e4-acbb-53c69ce92cc0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789688 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/0 1092", + "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, + "duration": 0.387639, + "executed": 1692789699, + "history": [ + { + "status": 0, + "executed": 1692783696 + }, + { + "status": 0, + "executed": 1692783996 + }, + { + "status": 0, + "executed": 1692784296 + }, + { + "status": 0, + "executed": 1692784597 + }, + { + "status": 0, + "executed": 1692784897 + }, + { + "status": 0, + "executed": 1692785197 + }, + { + "status": 0, + "executed": 1692785497 + }, + { + "status": 0, + "executed": 1692785797 + }, + { + "status": 0, + "executed": 1692786097 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786698 + }, + { + "status": 0, + "executed": 1692786998 + }, + { + "status": 0, + "executed": 1692787298 + }, + { + "status": 0, + "executed": 1692787598 + }, + { + "status": 0, + "executed": 1692787898 + }, + { + "status": 0, + "executed": 1692788198 + }, + { + "status": 0, + "executed": 1692788499 + }, + { + "status": 0, + "executed": 1692788799 + }, + { + "status": 0, + "executed": 1692789099 + }, + { + "status": 0, + "executed": 1692789399 + }, + { + "status": 0, + "executed": 1692789699 + } + ], + "issued": 1692789699, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/0 ingressOctets=604748438711589,egressOctets=3062918781153819,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789699, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c66c2cf3-f592-4cb2-bb25-7efba16e60f2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789700 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/1 1148", + "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, + "duration": 0.404937924, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783431 + }, + { + "status": 0, + "executed": 1692783731 + }, + { + "status": 0, + "executed": 1692784031 + }, + { + "status": 0, + "executed": 1692784331 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785832 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786733 + }, + { + "status": 0, + "executed": 1692787033 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787634 + }, + { + "status": 0, + "executed": 1692787934 + }, + { + "status": 0, + "executed": 1692788234 + }, + { + "status": 0, + "executed": 1692788534 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/1 ingressOctets=10015070372,egressOctets=11836275280,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "636567a1-630e-48da-808a-95c3954c8543", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/2 1093", + "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, + "duration": 0.453105581, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784518 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786020 + }, + { + "status": 0, + "executed": 1692786320 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/2 ingressOctets=14305404933,egressOctets=8034716446,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ebf61481-a75d-4494-9067-4b718310e1d1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789624 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/3 1100", + "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, + "duration": 0.432001293, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783475 + }, + { + "status": 0, + "executed": 1692783775 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/3 ingressOctets=28604954,egressOctets=143637268,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f185884-dd0b-4b88-93b6-7a057a934542", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/4 1145", + "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, + "duration": 0.425966466, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783481 + }, + { + "status": 0, + "executed": 1692783781 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784982 + }, + { + "status": 0, + "executed": 1692785282 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786183 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787384 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787985 + }, + { + "status": 0, + "executed": 1692788285 + }, + { + "status": 0, + "executed": 1692788585 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789485, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/4 ingressOctets=28604954,egressOctets=143673060,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "046d420b-5c3e-4946-876c-2d896940d976", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/5 1156", + "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, + "duration": 0.359205994, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/5 ingressOctets=174721507602,egressOctets=11547437688,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 34828, + "occurrences_watermark": 34828, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3abaa9ac-be8e-4e51-bf82-f094e8508f1a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/5.0 519", + "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, + "duration": 0.3797992, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/5.0 ingressOctets=174721488205,egressOctets=11569685528,ingressErrors=0,egressErrors=0,ingressOctetsv6=110028915943,egressOctetsv6=1127094920,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a83236fe-309b-435d-99ab-ea2722385ada", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789488 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/6 1172", + "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, + "duration": 0.422736465, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783573 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/6 ingressOctets=686260543432,egressOctets=663680216469,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "66ec2818-5d7c-4995-8e7f-24e7b803f736", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789578 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/6.0 1594", + "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, + "duration": 0.370088462, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785326 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786226 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787428 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788029 + }, + { + "status": 0, + "executed": 1692788329 + }, + { + "status": 0, + "executed": 1692788629 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789529, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/6.0 ingressOctets=686259376317,egressOctets=663701604738,ingressErrors=0,egressErrors=0,ingressOctetsv6=271230106638,egressOctetsv6=259123354682,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e20fd470-34f3-4eed-b533-d91d346a9b0c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/7 1174", + "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, + "duration": 0.419051076, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785785 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786686 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787286 + }, + { + "status": 0, + "executed": 1692787586 + }, + { + "status": 0, + "executed": 1692787886 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788787 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789687, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/7 ingressOctets=71957840960,egressOctets=122245587429,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 15549, + "occurrences_watermark": 15549, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c03a8722-4279-43dd-99b7-00d36239e3ad", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789688 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/2/7.0 1595", + "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, + "duration": 0.418203579, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786211 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/2/7.0 ingressOctets=71957291745,egressOctets=122267026860,ingressErrors=0,egressErrors=0,ingressOctetsv6=42158660716,egressOctetsv6=102374188036,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-2-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8187b15f-1d07-4288-a6e3-cf7408952057", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/3/0 1220", + "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, + "duration": 0.35458707, + "executed": 1692789527, + "history": [ + { + "status": 0, + "executed": 1692783522 + }, + { + "status": 0, + "executed": 1692783822 + }, + { + "status": 0, + "executed": 1692784123 + }, + { + "status": 0, + "executed": 1692784423 + }, + { + "status": 0, + "executed": 1692784723 + }, + { + "status": 0, + "executed": 1692785023 + }, + { + "status": 0, + "executed": 1692785323 + }, + { + "status": 0, + "executed": 1692785624 + }, + { + "status": 0, + "executed": 1692785924 + }, + { + "status": 0, + "executed": 1692786224 + }, + { + "status": 0, + "executed": 1692786525 + }, + { + "status": 0, + "executed": 1692786825 + }, + { + "status": 0, + "executed": 1692787125 + }, + { + "status": 0, + "executed": 1692787425 + }, + { + "status": 0, + "executed": 1692787726 + }, + { + "status": 0, + "executed": 1692788026 + }, + { + "status": 0, + "executed": 1692788326 + }, + { + "status": 0, + "executed": 1692788626 + }, + { + "status": 0, + "executed": 1692788927 + }, + { + "status": 0, + "executed": 1692789227 + }, + { + "status": 0, + "executed": 1692789527 + } + ], + "issued": 1692789526, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/3/0 ingressOctets=2806481138441480,egressOctets=665767192739892,ingressErrors=42798,egressErrors=0,ingressDiscards=0,egressDiscards=2153539\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789527, + "occurrences": 15544, + "occurrences_watermark": 15544, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5c29ab51-d3ed-48ef-98d8-cbda3736eb0f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789527 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/3/1 1221", + "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, + "duration": 0.365770029, + "executed": 1692789717, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784314 + }, + { + "status": 0, + "executed": 1692784614 + }, + { + "status": 0, + "executed": 1692784914 + }, + { + "status": 0, + "executed": 1692785214 + }, + { + "status": 0, + "executed": 1692785514 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787316 + }, + { + "status": 0, + "executed": 1692787616 + }, + { + "status": 0, + "executed": 1692787917 + }, + { + "status": 0, + "executed": 1692788217 + }, + { + "status": 0, + "executed": 1692788517 + }, + { + "status": 0, + "executed": 1692788817 + }, + { + "status": 0, + "executed": 1692789117 + }, + { + "status": 0, + "executed": 1692789417 + }, + { + "status": 0, + "executed": 1692789717 + } + ], + "issued": 1692789717, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/3/1 ingressOctets=2811795078267045,egressOctets=665965531701010,ingressErrors=42704,egressErrors=0,ingressDiscards=0,egressDiscards=2034312\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789717, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b5533e7c-e1ca-42f9-ae8f-382fb147a9b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789718 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/3/2 1233", + "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, + "duration": 0.383442833, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/3/2 ingressOctets=49942079069236,egressOctets=5751622602674,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ad64797e-316b-44dc-9f7f-7613aad22eb2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/3/2.0 856", + "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, + "duration": 0.385146822, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/3/2.0 ingressOctets=49942170477299,egressOctets=5751655047579,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-3-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c0b77db4-7dac-4469-ab68-6d82adc3ebb2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789570 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/3/3 1234", + "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, + "duration": 0.35948261, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783663 + }, + { + "status": 0, + "executed": 1692783963 + }, + { + "status": 0, + "executed": 1692784263 + }, + { + "status": 0, + "executed": 1692784563 + }, + { + "status": 0, + "executed": 1692784863 + }, + { + "status": 0, + "executed": 1692785163 + }, + { + "status": 0, + "executed": 1692785463 + }, + { + "status": 0, + "executed": 1692785764 + }, + { + "status": 0, + "executed": 1692786064 + }, + { + "status": 0, + "executed": 1692786364 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786964 + }, + { + "status": 0, + "executed": 1692787264 + }, + { + "status": 0, + "executed": 1692787565 + }, + { + "status": 0, + "executed": 1692787865 + }, + { + "status": 0, + "executed": 1692788165 + }, + { + "status": 0, + "executed": 1692788466 + }, + { + "status": 0, + "executed": 1692788766 + }, + { + "status": 0, + "executed": 1692789066 + }, + { + "status": 0, + "executed": 1692789366 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789666, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/3/3 ingressOctets=50700684185365,egressOctets=5834748736820,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 12705, + "occurrences_watermark": 12705, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "143fa419-f687-48cf-ae9b-52c813a9b8f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3837, + "timestamp": 1692789667 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/3/3.0 865", + "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, + "duration": 0.359401519, + "executed": 1692789545, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789545 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/3/3.0 ingressOctets=50700220949623,egressOctets=5834710785185,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789545, + "occurrences": 15548, + "occurrences_watermark": 15548, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-3-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5c421171-3948-4bc3-98f5-2522a54d0b00", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/3/4 1235", + "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, + "duration": 0.4655129, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783475 + }, + { + "status": 0, + "executed": 1692783775 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 15550, + "occurrences_watermark": 15550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ddb953b1-2a08-4e02-b52a-87dc56f5d49b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/3/5 1238", + "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, + "duration": 0.440594701, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788938 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3100ccf5-b903-4957-8dad-74aaf2990ea8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/3/6 1240", + "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, + "duration": 0.336428762, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0ec698bd-45cd-47a4-a6fd-8ab2c3baef56", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.fra.de.geant.net xe-9/3/7 1247", + "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, + "duration": 0.438118588, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787213 + }, + { + "status": 0, + "executed": 1692787514 + }, + { + "status": 0, + "executed": 1692787814 + }, + { + "status": 0, + "executed": 1692788115 + }, + { + "status": 0, + "executed": 1692788414 + }, + { + "status": 0, + "executed": 1692788715 + }, + { + "status": 0, + "executed": 1692789015 + }, + { + "status": 0, + "executed": 1692789316 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789615, + "output": "counters,hostname=mx1.fra.de.geant.net,interface_name=xe-9/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 15551, + "occurrences_watermark": 15551, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.fra.de.geant.net-xe-9-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.fra.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.fra.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "78fe5651-fa9f-4383-a836-400dfd597a54", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789616 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.gen.ch.geant.net", + "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, + "duration": 5.286151247, + "executed": 1692789479, + "history": [ + { + "status": 1, + "executed": 1692783473 + }, + { + "status": 1, + "executed": 1692783773 + }, + { + "status": 1, + "executed": 1692784076 + }, + { + "status": 1, + "executed": 1692784375 + }, + { + "status": 1, + "executed": 1692784675 + }, + { + "status": 1, + "executed": 1692784976 + }, + { + "status": 1, + "executed": 1692785276 + }, + { + "status": 1, + "executed": 1692785576 + }, + { + "status": 1, + "executed": 1692785876 + }, + { + "status": 1, + "executed": 1692786177 + }, + { + "status": 1, + "executed": 1692786477 + }, + { + "status": 1, + "executed": 1692786777 + }, + { + "status": 1, + "executed": 1692787077 + }, + { + "status": 1, + "executed": 1692787378 + }, + { + "status": 1, + "executed": 1692787678 + }, + { + "status": 1, + "executed": 1692787979 + }, + { + "status": 1, + "executed": 1692788279 + }, + { + "status": 1, + "executed": 1692788579 + }, + { + "status": 1, + "executed": 1692788879 + }, + { + "status": 1, + "executed": 1692789179 + }, + { + "status": 1, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "2023-08-23 11:17:59,629 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:59,630 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:59,630 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:59,630 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.gen.ch.geant.net\n2023-08-23 11:17:59,633 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:59,655 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.gen.ch.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.1 octets=359867051272\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.8 octets=5675638715\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.9 octets=823825208\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.10 octets=26007091193\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.11 octets=490765355058\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.12 octets=69085278417\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.13 octets=275688837929\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.14 octets=24967949932\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.15 octets=749348386741\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.16 octets=462832765849\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.17 octets=333638645323\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.18 octets=1421798912945\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.19 octets=128499213133\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.20 octets=760638727003\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.21 octets=220305686537\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.23 octets=624183729547\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.24 octets=2429612926181\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.25 octets=28642773940\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.29 octets=2607471607141\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.30 octets=4846156787097\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.32 octets=3339471859955\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.33 octets=943975828791\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.34 octets=521539234057\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.35 octets=1973596869922\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.36 octets=448849287026\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.37 octets=770560307549\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.38 octets=937935277522\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.39 octets=293263486552\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.40 octets=61479256449\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.41 octets=611432469758\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.42 octets=401644976644\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.43 octets=1203091367683\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.44 octets=111031600918\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.45 octets=1185732569821\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.46 octets=339928562611\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.47 octets=1507146940606\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.48 octets=60040380950\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.49 octets=606693892698\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.50 octets=402357812081\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.51 octets=1205241807349\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.52 octets=110629739427\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.53 octets=211152083971\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.54 octets=28103841881\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.55 octets=64977448055\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.56 octets=75077676171\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.57 octets=54162689164\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.58 octets=53060894576\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.59 octets=102309569526\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.61 octets=4820887343\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.62 octets=139550002990\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.64 octets=277118253423\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.65 octets=59631471330\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.66 octets=10688188933\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.67 octets=1192150359548\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.68 octets=113675634547\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.222.69 octets=520831318211\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.223.1 octets=36353879037746\nmulticast,hostname=mx1.gen.ch.geant.net,subscription=232.223.223.22 octets=5979417878952\n2023-08-23 11:18:04,532 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.2,232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.22,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.31,232.223.222.60,232.223.222.63,232.223.222.70,232.223.222.71,232.223.222.72\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 23824, + "occurrences_watermark": 23824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.gen.ch.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a265d998-6a55-4746-bbef-afaafad6f5ff", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789484 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10 697", + "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, + "duration": 0.429537692, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae10 ingressOctets=21277359069119942,egressOctets=7247050892200175,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 23805, + "occurrences_watermark": 23805, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "db9cee99-f183-49b9-a1f3-4350077432e0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.111 798", + "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, + "duration": 0.441289239, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783523 + }, + { + "status": 0, + "executed": 1692783823 + }, + { + "status": 0, + "executed": 1692784124 + }, + { + "status": 0, + "executed": 1692784424 + }, + { + "status": 0, + "executed": 1692784724 + }, + { + "status": 0, + "executed": 1692785024 + }, + { + "status": 0, + "executed": 1692785324 + }, + { + "status": 0, + "executed": 1692785625 + }, + { + "status": 0, + "executed": 1692785925 + }, + { + "status": 0, + "executed": 1692786225 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786826 + }, + { + "status": 0, + "executed": 1692787126 + }, + { + "status": 0, + "executed": 1692787426 + }, + { + "status": 0, + "executed": 1692787727 + }, + { + "status": 0, + "executed": 1692788027 + }, + { + "status": 0, + "executed": 1692788327 + }, + { + "status": 0, + "executed": 1692788627 + }, + { + "status": 0, + "executed": 1692788928 + }, + { + "status": 0, + "executed": 1692789228 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789527, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae10.111 ingressOctets=21268743976014423,egressOctets=7241089809408898,ingressErrors=0,egressErrors=0,ingressOctetsv6=6851564874198655,egressOctetsv6=6123510654762900,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae10.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "81a04121-1793-4f1f-8d1b-a38b8097efc1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789528 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.112 852", + "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, + "duration": 0.474041438, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783472 + }, + { + "status": 0, + "executed": 1692783772 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786176 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae10.112 ingressOctets=48232818650,egressOctets=17415283135,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae10.112", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ce4cfa4e-b316-4f36-a0a5-9695745197e5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.114 907", + "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, + "duration": 0.506766626, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae10.114 ingressOctets=8399694295667,egressOctets=5532674491093,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae10.114", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8dafb03a-da63-454a-a794-7c2957804bf0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae10.2905 665", + "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, + "duration": 0.489935316, + "executed": 1692789628, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788427 + }, + { + "status": 0, + "executed": 1692788727 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789328 + }, + { + "status": 0, + "executed": 1692789628 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae10.2905 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789628, + "occurrences": 23817, + "occurrences_watermark": 23817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae10.2905", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "354b6fd6-8db8-42aa-b333-a1de66b59972", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae11 698", + "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, + "duration": 0.470147239, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae11 ingressOctets=20041006482193989,egressOctets=16977378029586385,ingressErrors=0,egressErrors=2,ingressDiscards=0,egressDiscards=13609920\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 23806, + "occurrences_watermark": 23806, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a06017bb-fef3-4c9c-9329-f412e3454a20", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae11.111 800", + "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, + "duration": 0.544181671, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae11.111 ingressOctets=3573431325510270,egressOctets=5475754438658931,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae11.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "36b67182-4ff6-4a88-b670-fd4b3e6bab67", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae11.116 875", + "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, + "duration": 0.619462735, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae11.116 ingressOctets=16467481962373009,egressOctets=11501481145914426,ingressErrors=0,egressErrors=0,ingressOctetsv6=16467481962373009,egressOctetsv6=11501481095132883,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 23806, + "occurrences_watermark": 23806, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae11.116", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "90dca8ea-9d52-41e2-9247-e56c32fdeff3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12 699", + "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, + "duration": 0.450507937, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786034 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786635 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae12 ingressOctets=17176268212505223,egressOctets=25632841976120837,ingressErrors=31,egressErrors=19,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5524f441-620d-4acc-a183-b7d3aa1e4bcf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789638 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.1000 696", + "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, + "duration": 0.450169112, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae12.1000 ingressOctets=1221236061517,egressOctets=490713780647,ingressErrors=0,egressErrors=0,ingressOctetsv6=44602023453,egressOctetsv6=238080140284,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 23816, + "occurrences_watermark": 23816, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae12.1000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5b0f4690-731d-4577-92d2-82902527f10c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.1001 886", + "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, + "duration": 0.466602658, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae12.1001 ingressOctets=33529914,egressOctets=57355366,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae12.1001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "04e01528-0583-4026-8cb4-0cfc7a47a9d4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.1100 765", + "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, + "duration": 0.422458101, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783850 + }, + { + "status": 0, + "executed": 1692784150 + }, + { + "status": 0, + "executed": 1692784450 + }, + { + "status": 0, + "executed": 1692784750 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787452 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788053 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae12.1100 ingressOctets=516092087376049,egressOctets=527464910453519,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae12.1100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0663a27a-65a1-4814-b193-0357d5e1fe4c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.111 700", + "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, + "duration": 0.44462499, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786214 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae12.111 ingressOctets=16651496731836894,egressOctets=25101357400377761,ingressErrors=0,egressErrors=0,ingressOctetsv6=13105385542937345,egressOctetsv6=9750111855894483,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 20345, + "occurrences_watermark": 20345, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae12.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2cedec42-3115-4f87-a0be-410ee29b0d06", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.1200 805", + "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, + "duration": 0.442950259, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae12.1200 ingressOctets=6764967300124,egressOctets=2591890645369,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae12.1200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "32102933-e94a-45be-811a-9d2b9434f1dd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789706 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.333 745", + "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, + "duration": 0.434232901, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae12.333 ingressOctets=411869675127,egressOctets=603364015991,ingressErrors=0,egressErrors=0,ingressOctetsv6=6949544412,egressOctetsv6=10716821845,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 23805, + "occurrences_watermark": 23805, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae12.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "18f4f6a3-3f35-4237-950a-0c3a462274d4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.4087 639", + "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, + "duration": 0.474761958, + "executed": 1692789527, + "history": [ + { + "status": 0, + "executed": 1692783522 + }, + { + "status": 0, + "executed": 1692783822 + }, + { + "status": 0, + "executed": 1692784123 + }, + { + "status": 0, + "executed": 1692784423 + }, + { + "status": 0, + "executed": 1692784723 + }, + { + "status": 0, + "executed": 1692785023 + }, + { + "status": 0, + "executed": 1692785323 + }, + { + "status": 0, + "executed": 1692785624 + }, + { + "status": 0, + "executed": 1692785924 + }, + { + "status": 0, + "executed": 1692786224 + }, + { + "status": 0, + "executed": 1692786525 + }, + { + "status": 0, + "executed": 1692786825 + }, + { + "status": 0, + "executed": 1692787125 + }, + { + "status": 0, + "executed": 1692787425 + }, + { + "status": 0, + "executed": 1692787726 + }, + { + "status": 0, + "executed": 1692788026 + }, + { + "status": 0, + "executed": 1692788326 + }, + { + "status": 0, + "executed": 1692788626 + }, + { + "status": 0, + "executed": 1692788927 + }, + { + "status": 0, + "executed": 1692789227 + }, + { + "status": 0, + "executed": 1692789527 + } + ], + "issued": 1692789526, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae12.4087 ingressOctets=101791541,egressOctets=1212128574,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789527, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae12.4087", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d25f5753-a414-4825-b8a7-ec89fb3eca63", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789527 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae12.4089 630", + "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, + "duration": 0.567420209, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae12.4089 ingressOctets=3835311746,egressOctets=2801167880,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 23808, + "occurrences_watermark": 23808, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae12.4089", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ba5b0e7-d34b-4fb7-8779-6571cf7949be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14 704", + "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, + "duration": 0.472885197, + "executed": 1692789545, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789545 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae14 ingressOctets=8342838702564716,egressOctets=8540309672337604,ingressErrors=0,egressErrors=2,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789545, + "occurrences": 23808, + "occurrences_watermark": 23808, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae14", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "323183e1-e32e-40d7-b0f7-8717b2569a0f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.1290 774", + "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, + "duration": 0.467731954, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae14.1290 ingressOctets=831029,egressOctets=230182878,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae14.1290", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d846377e-40fd-4a4d-aa42-cd6aafc98603", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.160 828", + "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, + "duration": 0.494273275, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784849 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787551 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae14.160 ingressOctets=7705127652348795,egressOctets=4324312530591718,ingressErrors=0,egressErrors=0,ingressOctetsv6=4040301410758738,egressOctetsv6=2520048409376251,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae14.160", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0d91319c-4c4a-42d6-9875-9f3284c39e3d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789653 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.161 916", + "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, + "duration": 0.481642072, + "executed": 1692789532, + "history": [ + { + "status": 0, + "executed": 1692783527 + }, + { + "status": 0, + "executed": 1692783827 + }, + { + "status": 0, + "executed": 1692784128 + }, + { + "status": 0, + "executed": 1692784428 + }, + { + "status": 0, + "executed": 1692784728 + }, + { + "status": 0, + "executed": 1692785028 + }, + { + "status": 0, + "executed": 1692785328 + }, + { + "status": 0, + "executed": 1692785630 + }, + { + "status": 0, + "executed": 1692785929 + }, + { + "status": 0, + "executed": 1692786230 + }, + { + "status": 0, + "executed": 1692786530 + }, + { + "status": 0, + "executed": 1692786830 + }, + { + "status": 0, + "executed": 1692787130 + }, + { + "status": 0, + "executed": 1692787430 + }, + { + "status": 0, + "executed": 1692787731 + }, + { + "status": 0, + "executed": 1692788031 + }, + { + "status": 0, + "executed": 1692788331 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788932 + }, + { + "status": 0, + "executed": 1692789232 + }, + { + "status": 0, + "executed": 1692789532 + } + ], + "issued": 1692789531, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae14.161 ingressOctets=183437809,egressOctets=230060257,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789532, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae14.161", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "71e19909-6de3-424d-a794-45d039e6a635", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.2061 788", + "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, + "duration": 0.479591737, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae14.2061 ingressOctets=86597620,egressOctets=230030634,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae14.2061", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "79869462-480a-4235-bb70-671ccbec1e3e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.3151 826", + "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, + "duration": 0.491847406, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783668 + }, + { + "status": 0, + "executed": 1692783968 + }, + { + "status": 0, + "executed": 1692784268 + }, + { + "status": 0, + "executed": 1692784569 + }, + { + "status": 0, + "executed": 1692784869 + }, + { + "status": 0, + "executed": 1692785169 + }, + { + "status": 0, + "executed": 1692785469 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786070 + }, + { + "status": 0, + "executed": 1692786370 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786970 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787571 + }, + { + "status": 0, + "executed": 1692787871 + }, + { + "status": 0, + "executed": 1692788171 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789072 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789672, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae14.3151 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae14.3151", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "047c8a03-1c58-4049-9d5d-682f1b3a23b3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.3157 872", + "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, + "duration": 0.445158033, + "executed": 1692789510, + "history": [ + { + "status": 0, + "executed": 1692783505 + }, + { + "status": 0, + "executed": 1692783805 + }, + { + "status": 0, + "executed": 1692784106 + }, + { + "status": 0, + "executed": 1692784406 + }, + { + "status": 0, + "executed": 1692784706 + }, + { + "status": 0, + "executed": 1692785006 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785607 + }, + { + "status": 0, + "executed": 1692785907 + }, + { + "status": 0, + "executed": 1692786208 + }, + { + "status": 0, + "executed": 1692786508 + }, + { + "status": 0, + "executed": 1692786808 + }, + { + "status": 0, + "executed": 1692787108 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787709 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788910 + }, + { + "status": 0, + "executed": 1692789210 + }, + { + "status": 0, + "executed": 1692789510 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae14.3157 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789510, + "occurrences": 20345, + "occurrences_watermark": 20345, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae14.3157", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7358cec6-fac8-44e0-831c-b6ff5febba37", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789510 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.333 895", + "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, + "duration": 0.480273412, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783511 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785012 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae14.333 ingressOctets=634271895088670,egressOctets=4215643004051523,ingressErrors=0,egressErrors=0,ingressOctetsv6=36328022436163,egressOctetsv6=56093217769813,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae14.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2145e8d1-7a18-4479-95da-00c179e206f4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.518 827", + "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, + "duration": 0.451129864, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae14.518 ingressOctets=2674260934694,egressOctets=363798069314,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae14.518", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4485acce-c0f8-4107-8df1-0f290a945136", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae14.990 887", + "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, + "duration": 0.465701115, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783857 + }, + { + "status": 0, + "executed": 1692784157 + }, + { + "status": 0, + "executed": 1692784457 + }, + { + "status": 0, + "executed": 1692784757 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae14.990 ingressOctets=804927459552,egressOctets=20160622799,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae14.990", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3befc9e6-4cd0-4386-8280-bae19909ef8b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789562 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae17 707", + "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, + "duration": 0.482949823, + "executed": 1692789668, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784565 + }, + { + "status": 0, + "executed": 1692784865 + }, + { + "status": 0, + "executed": 1692785165 + }, + { + "status": 0, + "executed": 1692785465 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786366 + }, + { + "status": 0, + "executed": 1692786666 + }, + { + "status": 0, + "executed": 1692786966 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787867 + }, + { + "status": 0, + "executed": 1692788167 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789068 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789668 + } + ], + "issued": 1692789668, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae17 ingressOctets=18888247754394992,egressOctets=3878562839523962,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789668, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae17", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2bc09b77-fe1d-4dcd-aec3-36265a42ac69", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789669 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae17.200 920", + "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, + "duration": 0.442294441, + "executed": 1692789564, + "history": [ + { + "status": 0, + "executed": 1692783559 + }, + { + "status": 0, + "executed": 1692783859 + }, + { + "status": 0, + "executed": 1692784159 + }, + { + "status": 0, + "executed": 1692784460 + }, + { + "status": 0, + "executed": 1692784760 + }, + { + "status": 0, + "executed": 1692785060 + }, + { + "status": 0, + "executed": 1692785360 + }, + { + "status": 0, + "executed": 1692785660 + }, + { + "status": 0, + "executed": 1692785960 + }, + { + "status": 0, + "executed": 1692786261 + }, + { + "status": 0, + "executed": 1692786562 + }, + { + "status": 0, + "executed": 1692786862 + }, + { + "status": 0, + "executed": 1692787162 + }, + { + "status": 0, + "executed": 1692787462 + }, + { + "status": 0, + "executed": 1692787763 + }, + { + "status": 0, + "executed": 1692788063 + }, + { + "status": 0, + "executed": 1692788363 + }, + { + "status": 0, + "executed": 1692788664 + }, + { + "status": 0, + "executed": 1692788964 + }, + { + "status": 0, + "executed": 1692789264 + }, + { + "status": 0, + "executed": 1692789564 + } + ], + "issued": 1692789564, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae17.200 ingressOctets=18342298697415298,egressOctets=3241089827025235,ingressErrors=0,egressErrors=0,ingressOctetsv6=188154777851,egressOctetsv6=2281385776357744,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789564, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae17.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c94b0009-d7dd-4531-9bb4-c6a6ffebd812", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789565 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae17.333 748", + "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, + "duration": 0.590123715, + "executed": 1692789683, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786382 + }, + { + "status": 0, + "executed": 1692786682 + }, + { + "status": 0, + "executed": 1692786982 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788483 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789683 + } + ], + "issued": 1692789683, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae17.333 ingressOctets=545838454183526,egressOctets=637416090452235,ingressErrors=0,egressErrors=0,ingressOctetsv6=7411367726951,egressOctetsv6=126430106542299,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789683, + "occurrences": 23804, + "occurrences_watermark": 23804, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae17.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4a2e1f65-04cd-4410-91dc-fa4c98c6a615", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789684 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae18 708", + "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, + "duration": 0.491825394, + "executed": 1692789525, + "history": [ + { + "status": 0, + "executed": 1692783520 + }, + { + "status": 0, + "executed": 1692783820 + }, + { + "status": 0, + "executed": 1692784120 + }, + { + "status": 0, + "executed": 1692784420 + }, + { + "status": 0, + "executed": 1692784720 + }, + { + "status": 0, + "executed": 1692785021 + }, + { + "status": 0, + "executed": 1692785321 + }, + { + "status": 0, + "executed": 1692785621 + }, + { + "status": 0, + "executed": 1692785921 + }, + { + "status": 0, + "executed": 1692786222 + }, + { + "status": 0, + "executed": 1692786522 + }, + { + "status": 0, + "executed": 1692786822 + }, + { + "status": 0, + "executed": 1692787122 + }, + { + "status": 0, + "executed": 1692787423 + }, + { + "status": 0, + "executed": 1692787723 + }, + { + "status": 0, + "executed": 1692788024 + }, + { + "status": 0, + "executed": 1692788324 + }, + { + "status": 0, + "executed": 1692788624 + }, + { + "status": 0, + "executed": 1692788924 + }, + { + "status": 0, + "executed": 1692789224 + }, + { + "status": 0, + "executed": 1692789525 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae18 ingressOctets=40841062215584,egressOctets=154811379418575,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=366604\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789525, + "occurrences": 23809, + "occurrences_watermark": 23809, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae18", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bdba36ef-835a-4305-a219-e2db7e4c58e9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae18.2001 864", + "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, + "duration": 0.460490247, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae18.2001 ingressOctets=40840816273431,egressOctets=154811044367849,ingressErrors=0,egressErrors=0,ingressOctetsv6=19361934347710,egressOctetsv6=39780464749225,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae18.2001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5b743d98-9ab1-4382-8652-64f3b3dfdf2e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae2 743", + "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, + "duration": 0.504056797, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae2 ingressOctets=35139923990619986,egressOctets=38014212648255992,ingressErrors=66,egressErrors=15,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 23540, + "occurrences_watermark": 23540, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ad17aefe-e2b4-43ee-8a07-5d48ae875eae", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae2.0 589", + "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, + "duration": 0.44773676, + "executed": 1692789585, + "history": [ + { + "status": 0, + "executed": 1692783581 + }, + { + "status": 0, + "executed": 1692783881 + }, + { + "status": 0, + "executed": 1692784181 + }, + { + "status": 0, + "executed": 1692784481 + }, + { + "status": 0, + "executed": 1692784781 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786582 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787183 + }, + { + "status": 0, + "executed": 1692787483 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788084 + }, + { + "status": 0, + "executed": 1692788384 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789285 + }, + { + "status": 0, + "executed": 1692789585 + } + ], + "issued": 1692789585, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae2.0 ingressOctets=35139877086556869,egressOctets=38014113581058884,ingressErrors=0,egressErrors=0,ingressOctetsv6=1116805113827894,egressOctetsv6=3530151407346176,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789585, + "occurrences": 23808, + "occurrences_watermark": 23808, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6f61b182-04cf-4355-88fc-065ab6f14213", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae20 710", + "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, + "duration": 0.517450129, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784849 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae20 ingressOctets=553279098056729,egressOctets=2096000686022599,ingressErrors=55,egressErrors=0,ingressDiscards=0,egressDiscards=24406\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae20", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e749c703-97d1-48b0-88bf-6c442050a68d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae20.100 892", + "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, + "duration": 0.479513439, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae20.100 ingressOctets=205771980544321,egressOctets=1065715351169651,ingressErrors=0,egressErrors=0,ingressOctetsv6=32028906488774,egressOctetsv6=586305775263419,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 23805, + "occurrences_watermark": 23805, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae20.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3ea3ae37-ac60-4e3c-ad20-dae79a2878e7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae20.111 897", + "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, + "duration": 0.485804342, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae20.111 ingressOctets=347504474651608,egressOctets=1030242941335508,ingressErrors=0,egressErrors=0,ingressOctetsv6=205143054527241,egressOctetsv6=860027395116703,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae20.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "38e9a491-ef8b-4bac-840a-9b4c0638b0c8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae20.420 659", + "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, + "duration": 0.496094755, + "executed": 1692789640, + "history": [ + { + "status": 0, + "executed": 1692783635 + }, + { + "status": 0, + "executed": 1692783935 + }, + { + "status": 0, + "executed": 1692784235 + }, + { + "status": 0, + "executed": 1692784535 + }, + { + "status": 0, + "executed": 1692784836 + }, + { + "status": 0, + "executed": 1692785136 + }, + { + "status": 0, + "executed": 1692785436 + }, + { + "status": 0, + "executed": 1692785737 + }, + { + "status": 0, + "executed": 1692786037 + }, + { + "status": 0, + "executed": 1692786337 + }, + { + "status": 0, + "executed": 1692786638 + }, + { + "status": 0, + "executed": 1692786937 + }, + { + "status": 0, + "executed": 1692787237 + }, + { + "status": 0, + "executed": 1692787538 + }, + { + "status": 0, + "executed": 1692787838 + }, + { + "status": 0, + "executed": 1692788138 + }, + { + "status": 0, + "executed": 1692788439 + }, + { + "status": 0, + "executed": 1692788739 + }, + { + "status": 0, + "executed": 1692789039 + }, + { + "status": 0, + "executed": 1692789340 + }, + { + "status": 0, + "executed": 1692789640 + } + ], + "issued": 1692789639, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae20.420 ingressOctets=668607890,egressOctets=672051810,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789640, + "occurrences": 23724, + "occurrences_watermark": 23724, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae20.420", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "19ecd919-5f1d-49da-91c4-fc35fb7fa876", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789640 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae21 711", + "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, + "duration": 0.574577171, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae21 ingressOctets=21575647250202167,egressOctets=7426970283229824,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f0e0e7a0-79a4-4e24-9c5d-9ac0a2dbc70d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae21.110 1243", + "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, + "duration": 0.582706177, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789025 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae21.110 ingressOctets=21575873042473691,egressOctets=7427471610958360,ingressErrors=0,egressErrors=0,ingressOctetsv6=6893938904809316,egressOctetsv6=6308989584862774,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae21.110", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a59836c2-be5b-4120-8317-ccf6b8955048", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae21.140 702", + "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, + "duration": 0.492471416, + "executed": 1692789648, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784841 + }, + { + "status": 0, + "executed": 1692785141 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785742 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786645 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787546 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789648 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae21.140 ingressOctets=146259672,egressOctets=45488,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789648, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae21.140", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5d2e8c60-5988-4eac-a8b0-61cc7efac24f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae22 712", + "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, + "duration": 0.450858439, + "executed": 1692789532, + "history": [ + { + "status": 0, + "executed": 1692783527 + }, + { + "status": 0, + "executed": 1692783827 + }, + { + "status": 0, + "executed": 1692784127 + }, + { + "status": 0, + "executed": 1692784427 + }, + { + "status": 0, + "executed": 1692784727 + }, + { + "status": 0, + "executed": 1692785028 + }, + { + "status": 0, + "executed": 1692785328 + }, + { + "status": 0, + "executed": 1692785630 + }, + { + "status": 0, + "executed": 1692785929 + }, + { + "status": 0, + "executed": 1692786230 + }, + { + "status": 0, + "executed": 1692786530 + }, + { + "status": 0, + "executed": 1692786830 + }, + { + "status": 0, + "executed": 1692787130 + }, + { + "status": 0, + "executed": 1692787431 + }, + { + "status": 0, + "executed": 1692787731 + }, + { + "status": 0, + "executed": 1692788032 + }, + { + "status": 0, + "executed": 1692788332 + }, + { + "status": 0, + "executed": 1692788632 + }, + { + "status": 0, + "executed": 1692788932 + }, + { + "status": 0, + "executed": 1692789232 + }, + { + "status": 0, + "executed": 1692789532 + } + ], + "issued": 1692789532, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae22 ingressOctets=6841174109333794,egressOctets=3857823429889692,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789532, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f397086c-9e74-451c-8ae5-e7745e047b58", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789533 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae22.201 1237", + "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, + "duration": 0.514985278, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae22.201 ingressOctets=6363741919442938,egressOctets=3223970728927751,ingressErrors=0,egressErrors=0,ingressOctetsv6=4683746142932299,egressOctetsv6=2273690171603032,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae22.201", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ec9b30a-f1f9-4eaa-bd74-3076571937ae", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae22.334 1238", + "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, + "duration": 0.464016326, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae22.334 ingressOctets=477525024763950,egressOctets=633912311909186,ingressErrors=0,egressErrors=0,ingressOctetsv6=65659439721535,egressOctetsv6=125168194316865,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae22.334", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "badbff97-7077-426b-bf8f-a03018714feb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23 713", + "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, + "duration": 0.50484549, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23 ingressOctets=11639500427176995,egressOctets=16703181615292728,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 23724, + "occurrences_watermark": 23724, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1beff742-60c7-4fb1-9af8-a1e6dda90cda", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.100 1271", + "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, + "duration": 0.454580479, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.100 ingressOctets=10273940784834864,egressOctets=12378451934883594,ingressErrors=0,egressErrors=0,ingressOctetsv6=7362447578632405,egressOctetsv6=6344363771136494,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "adbf6d88-072b-47c4-a7d4-2fc585302a54", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.1390 689", + "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, + "duration": 0.411959205, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.1390 ingressOctets=0,egressOctets=1116,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 23805, + "occurrences_watermark": 23805, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.1390", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dad4d1d3-43d0-488d-b025-2a4cdd9ac912", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.200 725", + "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, + "duration": 0.444707245, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.200 ingressOctets=93534978101,egressOctets=42083291299,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b6f5bfb0-da14-49fa-a5af-403b93fd5dac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.25 693", + "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, + "duration": 0.467557904, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.25 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7a3773fb-7444-4691-b966-4b48d7f10c76", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.310 1272", + "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, + "duration": 0.492519833, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.310 ingressOctets=177120,egressOctets=181620,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 23806, + "occurrences_watermark": 23806, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.310", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4d17812c-55d9-429d-b3b1-91f74cc6981c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.333 1273", + "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, + "duration": 0.503149213, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.333 ingressOctets=417836752567179,egressOctets=1134636390048556,ingressErrors=0,egressErrors=0,ingressOctetsv6=62220582075577,egressOctetsv6=53342845854866,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 23814, + "occurrences_watermark": 23814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "928df958-ecaf-40ec-944f-6baa5ba2c371", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.34 675", + "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, + "duration": 0.482047994, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783835 + }, + { + "status": 0, + "executed": 1692784135 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785036 + }, + { + "status": 0, + "executed": 1692785336 + }, + { + "status": 0, + "executed": 1692785636 + }, + { + "status": 0, + "executed": 1692785936 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786537 + }, + { + "status": 0, + "executed": 1692786837 + }, + { + "status": 0, + "executed": 1692787137 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787738 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789239 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.34 ingressOctets=272043996563,egressOctets=147900229025,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 23805, + "occurrences_watermark": 23805, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.34", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7bcdbb7f-71eb-4d6e-b36b-fc75e5309a64", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.350 1274", + "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, + "duration": 0.469803456, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.350 ingressOctets=0,egressOctets=7143660,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 23804, + "occurrences_watermark": 23804, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.350", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b583eed9-2dc9-4b6d-9179-71188bcb4356", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789691 + }, + { + "check": { + "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, + "duration": 0.474162721, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.559 ingressOctets=0,egressOctets=18030921,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 23806, + "occurrences_watermark": 23806, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.559", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8d2d98d3-3a63-4ebe-b96a-9407f793f0f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.600 1275", + "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, + "duration": 0.453923117, + "executed": 1692789683, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786381 + }, + { + "status": 0, + "executed": 1692786682 + }, + { + "status": 0, + "executed": 1692786981 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788482 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789683 + } + ], + "issued": 1692789682, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.600 ingressOctets=156629951010599,egressOctets=1241222767258644,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789683, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.600", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cce53a0b-6c07-4ff6-b54a-559b57969187", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789683 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.611 722", + "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, + "duration": 0.428275288, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783705 + }, + { + "status": 0, + "executed": 1692784005 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.611 ingressOctets=0,egressOctets=15537106,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 2279, + "occurrences_watermark": 2279, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.611", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a3f26022-d3da-4810-9c66-57d9cf4500cc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 760, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.668 709", + "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, + "duration": 0.506553273, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.668 ingressOctets=9419948622221,egressOctets=54452526048,ingressErrors=0,egressErrors=0,ingressOctetsv6=9756432462,egressOctetsv6=978945239,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.668", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4433a237-36f1-4c62-9a85-5017db0a321c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.70 1269", + "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, + "duration": 0.457027813, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.70 ingressOctets=243383910841220,egressOctets=780388808628653,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 23814, + "occurrences_watermark": 23814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.70", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eca22d2f-9b3e-4e46-8779-34e0f623b01a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae23.80 1270", + "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, + "duration": 0.461091756, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783668 + }, + { + "status": 0, + "executed": 1692783968 + }, + { + "status": 0, + "executed": 1692784268 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae23.80 ingressOctets=537995201410170,egressOctets=1168344144728785,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 23813, + "occurrences_watermark": 23813, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae23.80", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3908be8a-cc88-4f1c-900b-09cbd05977e3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae3 652", + "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, + "duration": 0.455338604, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786420 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788822 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789722, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae3 ingressOctets=34819599157776720,egressOctets=24489143177618196,ingressErrors=3,egressErrors=3,ingressDiscards=0,egressDiscards=42020\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 23808, + "occurrences_watermark": 23808, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fdc6f37b-845f-4ec0-b1b7-f4c316b028bb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789723 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae3.0 1459", + "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, + "duration": 0.504734299, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784617 + }, + { + "status": 0, + "executed": 1692784917 + }, + { + "status": 0, + "executed": 1692785217 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787319 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae3.0 ingressOctets=34819501980556458,egressOctets=24489125029969681,ingressErrors=0,egressErrors=0,ingressOctetsv6=1332035440486209,egressOctetsv6=8500957745713,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 23799, + "occurrences_watermark": 23799, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dc3a36f9-2d37-4ecb-9073-faa8e93dff25", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae4 650", + "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, + "duration": 0.448019878, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae4 ingressOctets=16668417658195367,egressOctets=22822014821545547,ingressErrors=65,egressErrors=205,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 23540, + "occurrences_watermark": 23540, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "94d2331b-e8d1-40ae-a5b8-d1b89b99d0f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae4.0 661", + "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, + "duration": 0.399764009, + "executed": 1692789713, + "history": [ + { + "status": 0, + "executed": 1692783710 + }, + { + "status": 0, + "executed": 1692784010 + }, + { + "status": 0, + "executed": 1692784310 + }, + { + "status": 0, + "executed": 1692784610 + }, + { + "status": 0, + "executed": 1692784910 + }, + { + "status": 0, + "executed": 1692785210 + }, + { + "status": 0, + "executed": 1692785510 + }, + { + "status": 0, + "executed": 1692785811 + }, + { + "status": 0, + "executed": 1692786111 + }, + { + "status": 0, + "executed": 1692786412 + }, + { + "status": 0, + "executed": 1692786712 + }, + { + "status": 0, + "executed": 1692787012 + }, + { + "status": 0, + "executed": 1692787312 + }, + { + "status": 0, + "executed": 1692787612 + }, + { + "status": 0, + "executed": 1692787912 + }, + { + "status": 0, + "executed": 1692788213 + }, + { + "status": 0, + "executed": 1692788513 + }, + { + "status": 0, + "executed": 1692788813 + }, + { + "status": 0, + "executed": 1692789113 + }, + { + "status": 0, + "executed": 1692789413 + }, + { + "status": 0, + "executed": 1692789713 + } + ], + "issued": 1692789713, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae4.0 ingressOctets=16668436718925095,egressOctets=22822035894579031,ingressErrors=0,egressErrors=0,ingressOctetsv6=1171355172828718,egressOctetsv6=54101150411450,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789713, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c4f88da4-0dce-46a9-9832-cb4001631c0e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789714 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae5 654", + "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, + "duration": 0.497647247, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae5 ingressOctets=16476210219976565,egressOctets=28288625197714822,ingressErrors=12,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 23539, + "occurrences_watermark": 23539, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a1c20dff-76cc-4489-96ae-6d44e4496b95", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae5.0 1463", + "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, + "duration": 0.578177853, + "executed": 1692789660, + "history": [ + { + "status": 0, + "executed": 1692783655 + }, + { + "status": 0, + "executed": 1692783955 + }, + { + "status": 0, + "executed": 1692784255 + }, + { + "status": 0, + "executed": 1692784555 + }, + { + "status": 0, + "executed": 1692784856 + }, + { + "status": 0, + "executed": 1692785156 + }, + { + "status": 0, + "executed": 1692785456 + }, + { + "status": 0, + "executed": 1692785756 + }, + { + "status": 0, + "executed": 1692786056 + }, + { + "status": 0, + "executed": 1692786357 + }, + { + "status": 0, + "executed": 1692786657 + }, + { + "status": 0, + "executed": 1692786957 + }, + { + "status": 0, + "executed": 1692787257 + }, + { + "status": 0, + "executed": 1692787558 + }, + { + "status": 0, + "executed": 1692787858 + }, + { + "status": 0, + "executed": 1692788158 + }, + { + "status": 0, + "executed": 1692788459 + }, + { + "status": 0, + "executed": 1692788759 + }, + { + "status": 0, + "executed": 1692789059 + }, + { + "status": 0, + "executed": 1692789360 + }, + { + "status": 0, + "executed": 1692789660 + } + ], + "issued": 1692789659, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae5.0 ingressOctets=16476145282351071,egressOctets=28288315402954033,ingressErrors=0,egressErrors=0,ingressOctetsv6=2476649678795432,egressOctetsv6=4052066202837316,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789660, + "occurrences": 20345, + "occurrences_watermark": 20345, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a5e2f978-ac9d-4f83-ac6b-5d849515c184", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789660 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae7 1314", + "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, + "duration": 0.581123248, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae7 ingressOctets=44313475786547351,egressOctets=74555377606042163,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 23718, + "occurrences_watermark": 23718, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7cc0baca-7d2a-4731-b63d-0bb02580c3d0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ae7.0 1315", + "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, + "duration": 0.510585121, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ae7.0 ingressOctets=44315452110609406,egressOctets=74556573425899263,ingressErrors=0,egressErrors=0,ingressOctetsv6=5196896387150524,egressOctetsv6=2406281895111625,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 23725, + "occurrences_watermark": 23725, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ae7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "74684c4c-b523-4147-b404-bbe60d29a6fe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-1/0/2 1333", + "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, + "duration": 0.745727256, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-1/0/2 ingressOctets=9430667000860793,egressOctets=1932997704193490,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-1-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6f024634-c4ff-4f6b-9ce0-ef19e470fd77", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-1/0/5 1334", + "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, + "duration": 0.475261164, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786077 + }, + { + "status": 0, + "executed": 1692786378 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-1/0/5 ingressOctets=5827020356258735,egressOctets=8390485412396243,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 23808, + "occurrences_watermark": 23808, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-1-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f81aab79-461f-44b0-9a19-343d5361fed3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-1/1/2 1346", + "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, + "duration": 0.41327188, + "executed": 1692789707, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786406 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789107 + }, + { + "status": 0, + "executed": 1692789407 + }, + { + "status": 0, + "executed": 1692789707 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-1/1/2 ingressOctets=9457596298992445,egressOctets=1945570627977058,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789707, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-1-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d36691bf-6412-4226-bec5-5fc138fe458a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-1/1/5 1347", + "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, + "duration": 0.443493617, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783518 + }, + { + "status": 0, + "executed": 1692783818 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785019 + }, + { + "status": 0, + "executed": 1692785319 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786220 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787421 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788022 + }, + { + "status": 0, + "executed": 1692788322 + }, + { + "status": 0, + "executed": 1692788622 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-1/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-1-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ce9d5c76-43fe-45da-b84e-e87a0b2b432b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-10/0/2 1250", + "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, + "duration": 0.420606, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783691 + }, + { + "status": 0, + "executed": 1692783991 + }, + { + "status": 0, + "executed": 1692784291 + }, + { + "status": 0, + "executed": 1692784592 + }, + { + "status": 0, + "executed": 1692784892 + }, + { + "status": 0, + "executed": 1692785192 + }, + { + "status": 0, + "executed": 1692785492 + }, + { + "status": 0, + "executed": 1692785792 + }, + { + "status": 0, + "executed": 1692786092 + }, + { + "status": 0, + "executed": 1692786393 + }, + { + "status": 0, + "executed": 1692786693 + }, + { + "status": 0, + "executed": 1692786993 + }, + { + "status": 0, + "executed": 1692787293 + }, + { + "status": 0, + "executed": 1692787593 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788494 + }, + { + "status": 0, + "executed": 1692788794 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789694, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-10/0/2 ingressOctets=3424725802864485,egressOctets=1928049939331691,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-10-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4419fcae-9755-4708-a140-7205580c02f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789695 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-10/0/5 1251", + "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, + "duration": 0.448933963, + "executed": 1692789477, + "history": [ + { + "status": 0, + "executed": 1692783471 + }, + { + "status": 0, + "executed": 1692783771 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784373 + }, + { + "status": 0, + "executed": 1692784673 + }, + { + "status": 0, + "executed": 1692784973 + }, + { + "status": 0, + "executed": 1692785273 + }, + { + "status": 0, + "executed": 1692785574 + }, + { + "status": 0, + "executed": 1692785874 + }, + { + "status": 0, + "executed": 1692786174 + }, + { + "status": 0, + "executed": 1692786475 + }, + { + "status": 0, + "executed": 1692786775 + }, + { + "status": 0, + "executed": 1692787075 + }, + { + "status": 0, + "executed": 1692787375 + }, + { + "status": 0, + "executed": 1692787676 + }, + { + "status": 0, + "executed": 1692787976 + }, + { + "status": 0, + "executed": 1692788276 + }, + { + "status": 0, + "executed": 1692788576 + }, + { + "status": 0, + "executed": 1692788877 + }, + { + "status": 0, + "executed": 1692789177 + }, + { + "status": 0, + "executed": 1692789477 + } + ], + "issued": 1692789476, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-10/0/5 ingressOctets=11716124843871472,egressOctets=12720143630005645,ingressErrors=50,egressErrors=5,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789477, + "occurrences": 23814, + "occurrences_watermark": 23814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-10-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9a326a4c-fc93-4594-9562-d198adea21aa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789477 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-10/1/2 1252", + "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, + "duration": 0.445315289, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-10/1/2 ingressOctets=11711200688659494,egressOctets=12779992727925984,ingressErrors=5,egressErrors=5,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 23806, + "occurrences_watermark": 23806, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-10-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b16f3f52-952d-4072-985d-697c306cdb79", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-10/1/5 1253", + "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, + "duration": 0.462870822, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-10/1/5 ingressOctets=11712753290196538,egressOctets=12514498031611493,ingressErrors=11,egressErrors=5,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-10-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "269d79d7-1161-4ce6-adba-0711d12fd9d3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-11/0/2 1214", + "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, + "duration": 0.444068216, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787457 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788058 + }, + { + "status": 0, + "executed": 1692788358 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789259 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-11/0/2 ingressOctets=2595826495204723,egressOctets=3414140036501602,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 23814, + "occurrences_watermark": 23814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-11-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "99c0cdf7-450e-4720-8fea-2a8424b13f45", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-11/0/5 1215", + "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, + "duration": 0.453001445, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-11/0/5 ingressOctets=3416556412868453,egressOctets=1929829834271390,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-11-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0bfbec5b-56ce-4b17-9990-0df2b8642503", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-11/1/2 1216", + "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, + "duration": 0.442473455, + "executed": 1692789703, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785499 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789103 + }, + { + "status": 0, + "executed": 1692789403 + }, + { + "status": 0, + "executed": 1692789703 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-11/1/2 ingressOctets=8332931577911812,egressOctets=10984127288364783,ingressErrors=26,egressErrors=47,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789703, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-11-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "848208b7-e06c-40b3-993c-f6bfb1b0f703", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789703 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-11/1/5 1219", + "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, + "duration": 0.547557724, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-11/1/5 ingressOctets=8335145242264580,egressOctets=11837461609571125,ingressErrors=39,egressErrors=158,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-11-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "accc70f7-7ab3-4068-82f0-cd9a2967962a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-4/0/2 1435", + "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, + "duration": 0.457980478, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-4/0/2 ingressOctets=5812648358144160,egressOctets=8312962165556357,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 23803, + "occurrences_watermark": 23803, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-4-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fd37c03a-2010-4cfb-a22c-5a9baa448a07", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-4/0/5 1436", + "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, + "duration": 0.447551369, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783490 + }, + { + "status": 0, + "executed": 1692783790 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784991 + }, + { + "status": 0, + "executed": 1692785291 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-4/0/5 ingressOctets=11604367435597915,egressOctets=7747116306824726,ingressErrors=3,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-4-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f9c0a453-57f1-45a6-8182-ee8b227655f9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789494 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-4/1/2 1439", + "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, + "duration": 0.462203482, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-4/1/2 ingressOctets=11604389245889500,egressOctets=8512564913602402,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 23817, + "occurrences_watermark": 23817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-4-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d6fdcaa3-efcd-4ba0-9407-ad7d3a622518", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-4/1/5 1440", + "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, + "duration": 0.460858276, + "executed": 1692789495, + "history": [ + { + "status": 0, + "executed": 1692783490 + }, + { + "status": 0, + "executed": 1692783790 + }, + { + "status": 0, + "executed": 1692784091 + }, + { + "status": 0, + "executed": 1692784391 + }, + { + "status": 0, + "executed": 1692784691 + }, + { + "status": 0, + "executed": 1692784991 + }, + { + "status": 0, + "executed": 1692785291 + }, + { + "status": 0, + "executed": 1692785592 + }, + { + "status": 0, + "executed": 1692785892 + }, + { + "status": 0, + "executed": 1692786192 + }, + { + "status": 0, + "executed": 1692786493 + }, + { + "status": 0, + "executed": 1692786793 + }, + { + "status": 0, + "executed": 1692787093 + }, + { + "status": 0, + "executed": 1692787393 + }, + { + "status": 0, + "executed": 1692787694 + }, + { + "status": 0, + "executed": 1692787994 + }, + { + "status": 0, + "executed": 1692788294 + }, + { + "status": 0, + "executed": 1692788594 + }, + { + "status": 0, + "executed": 1692788895 + }, + { + "status": 0, + "executed": 1692789195 + }, + { + "status": 0, + "executed": 1692789495 + } + ], + "issued": 1692789494, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-4/1/5 ingressOctets=11608130253850198,egressOctets=8228852154800737,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=42020\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789495, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-4-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "424937d8-cf05-4099-a903-dd8600b2cd2d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-5/0/4 862", + "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, + "duration": 0.433942417, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785956 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-5/0/4 ingressOctets=21575729768210114,egressOctets=7427178719515927,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 20344, + "occurrences_watermark": 20344, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-5-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cbfadd37-432a-4190-8ef5-a1ac4aa01395", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-5/1/4 1212", + "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, + "duration": 0.538520503, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783472 + }, + { + "status": 0, + "executed": 1692783772 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786176 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-5/1/4 ingressOctets=21276961708974688,egressOctets=7246361609208271,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-5-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "98c8bc47-153f-4990-8e8e-56af9c0df3db", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-7/0/4 812", + "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, + "duration": 0.509593239, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783476 + }, + { + "status": 0, + "executed": 1692783776 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784377 + }, + { + "status": 0, + "executed": 1692784677 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785578 + }, + { + "status": 0, + "executed": 1692785878 + }, + { + "status": 0, + "executed": 1692786178 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786779 + }, + { + "status": 0, + "executed": 1692787079 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787680 + }, + { + "status": 0, + "executed": 1692787980 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788881 + }, + { + "status": 0, + "executed": 1692789181 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-7/0/4 ingressOctets=15325047377406367,egressOctets=23973311379076234,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-7-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "80c6146c-6714-4c5a-9f44-4dab76311414", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-7/1/4 836", + "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, + "duration": 0.458138243, + "executed": 1692789712, + "history": [ + { + "status": 0, + "executed": 1692783709 + }, + { + "status": 0, + "executed": 1692784009 + }, + { + "status": 0, + "executed": 1692784309 + }, + { + "status": 0, + "executed": 1692784609 + }, + { + "status": 0, + "executed": 1692784909 + }, + { + "status": 0, + "executed": 1692785209 + }, + { + "status": 0, + "executed": 1692785509 + }, + { + "status": 0, + "executed": 1692785810 + }, + { + "status": 0, + "executed": 1692786110 + }, + { + "status": 0, + "executed": 1692786411 + }, + { + "status": 0, + "executed": 1692786711 + }, + { + "status": 0, + "executed": 1692787011 + }, + { + "status": 0, + "executed": 1692787311 + }, + { + "status": 0, + "executed": 1692787611 + }, + { + "status": 0, + "executed": 1692787912 + }, + { + "status": 0, + "executed": 1692788212 + }, + { + "status": 0, + "executed": 1692788512 + }, + { + "status": 0, + "executed": 1692788812 + }, + { + "status": 0, + "executed": 1692789112 + }, + { + "status": 0, + "executed": 1692789412 + }, + { + "status": 0, + "executed": 1692789712 + } + ], + "issued": 1692789712, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-7/1/4 ingressOctets=28989729510296443,egressOctets=50582869867677073,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789712, + "occurrences": 20342, + "occurrences_watermark": 20342, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-7-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f7e0951e-2af6-402d-9c17-cae0b227ab57", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789713 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/0/2 1528", + "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, + "duration": 0.417965322, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-8/0/2 ingressOctets=23599955176134528,egressOctets=16161288505884705,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=409133798\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 20343, + "occurrences_watermark": 20343, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-8-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "312ecd05-6a1e-4e21-a062-c8b2181cf617", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/0/2.104 1532", + "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, + "duration": 0.432648647, + "executed": 1692789628, + "history": [ + { + "status": 0, + "executed": 1692783624 + }, + { + "status": 0, + "executed": 1692783924 + }, + { + "status": 0, + "executed": 1692784224 + }, + { + "status": 0, + "executed": 1692784524 + }, + { + "status": 0, + "executed": 1692784825 + }, + { + "status": 0, + "executed": 1692785125 + }, + { + "status": 0, + "executed": 1692785425 + }, + { + "status": 0, + "executed": 1692785725 + }, + { + "status": 0, + "executed": 1692786026 + }, + { + "status": 0, + "executed": 1692786326 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787226 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787827 + }, + { + "status": 0, + "executed": 1692788127 + }, + { + "status": 0, + "executed": 1692788427 + }, + { + "status": 0, + "executed": 1692788727 + }, + { + "status": 0, + "executed": 1692789028 + }, + { + "status": 0, + "executed": 1692789328 + }, + { + "status": 0, + "executed": 1692789628 + } + ], + "issued": 1692789628, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-8/0/2.104 ingressOctets=1649693255406301,egressOctets=977730420761122,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789628, + "occurrences": 23822, + "occurrences_watermark": 23822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-8-0-2.104", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "57ceda8b-d198-4587-ac9f-87271a1ea30f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/0/2.106 1533", + "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, + "duration": 0.462443055, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786010 + }, + { + "status": 0, + "executed": 1692786310 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-8/0/2.106 ingressOctets=3012772091054478,egressOctets=610005488475805,ingressErrors=0,egressErrors=0,ingressOctetsv6=3012775351076248,egressOctetsv6=610005436072119,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 20347, + "occurrences_watermark": 20347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-8-0-2.106", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c520aa76-098c-4d5d-a54f-317221eb6c04", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/0/2.111 1534", + "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, + "duration": 0.431617461, + "executed": 1692789712, + "history": [ + { + "status": 0, + "executed": 1692783709 + }, + { + "status": 0, + "executed": 1692784009 + }, + { + "status": 0, + "executed": 1692784309 + }, + { + "status": 0, + "executed": 1692784610 + }, + { + "status": 0, + "executed": 1692784910 + }, + { + "status": 0, + "executed": 1692785210 + }, + { + "status": 0, + "executed": 1692785510 + }, + { + "status": 0, + "executed": 1692785810 + }, + { + "status": 0, + "executed": 1692786111 + }, + { + "status": 0, + "executed": 1692786411 + }, + { + "status": 0, + "executed": 1692786711 + }, + { + "status": 0, + "executed": 1692787011 + }, + { + "status": 0, + "executed": 1692787312 + }, + { + "status": 0, + "executed": 1692787612 + }, + { + "status": 0, + "executed": 1692787912 + }, + { + "status": 0, + "executed": 1692788212 + }, + { + "status": 0, + "executed": 1692788512 + }, + { + "status": 0, + "executed": 1692788813 + }, + { + "status": 0, + "executed": 1692789113 + }, + { + "status": 0, + "executed": 1692789413 + }, + { + "status": 0, + "executed": 1692789712 + } + ], + "issued": 1692789712, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-8/0/2.111 ingressOctets=18938246052770779,egressOctets=14573798220536969,ingressErrors=0,egressErrors=0,ingressOctetsv6=14150364079937436,egressOctetsv6=12624998136193008,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789712, + "occurrences": 20346, + "occurrences_watermark": 20346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-8-0-2.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8782dc74-99ba-4514-89a6-ffe0761f61b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789713 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/0/5 1529", + "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, + "duration": 0.475975072, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787551 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-8/0/5 ingressOctets=8590286719189869,egressOctets=12816028877709363,ingressErrors=19,egressErrors=10,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 23808, + "occurrences_watermark": 23808, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-8-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3b71255d-c80f-47b0-b157-53c529ffea44", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789653 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/1/2 1530", + "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, + "duration": 0.461189305, + "executed": 1692789676, + "history": [ + { + "status": 0, + "executed": 1692783672 + }, + { + "status": 0, + "executed": 1692783972 + }, + { + "status": 0, + "executed": 1692784272 + }, + { + "status": 0, + "executed": 1692784572 + }, + { + "status": 0, + "executed": 1692784872 + }, + { + "status": 0, + "executed": 1692785172 + }, + { + "status": 0, + "executed": 1692785472 + }, + { + "status": 0, + "executed": 1692785773 + }, + { + "status": 0, + "executed": 1692786073 + }, + { + "status": 0, + "executed": 1692786373 + }, + { + "status": 0, + "executed": 1692786673 + }, + { + "status": 0, + "executed": 1692786973 + }, + { + "status": 0, + "executed": 1692787274 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787875 + }, + { + "status": 0, + "executed": 1692788175 + }, + { + "status": 0, + "executed": 1692788475 + }, + { + "status": 0, + "executed": 1692788775 + }, + { + "status": 0, + "executed": 1692789076 + }, + { + "status": 0, + "executed": 1692789376 + }, + { + "status": 0, + "executed": 1692789676 + } + ], + "issued": 1692789676, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-8/1/2 ingressOctets=8342902475174632,egressOctets=8540445581881988,ingressErrors=0,egressErrors=2,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789676, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-8-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2fbad6b4-e240-47e2-b765-b61cd8689f68", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789676 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-8/1/5 1531", + "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, + "duration": 0.449937387, + "executed": 1692789678, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786675 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789678 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-8/1/5 ingressOctets=20041137840252316,egressOctets=16977571070881391,ingressErrors=0,egressErrors=2,ingressDiscards=0,egressDiscards=13609920\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789678, + "occurrences": 23806, + "occurrences_watermark": 23806, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-8-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "48af8dc0-8b54-4020-ac34-5ba47a9ad122", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-9/0/4 1213", + "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, + "duration": 0.446512482, + "executed": 1692789470, + "history": [ + { + "status": 0, + "executed": 1692783465 + }, + { + "status": 0, + "executed": 1692783765 + }, + { + "status": 0, + "executed": 1692784065 + }, + { + "status": 0, + "executed": 1692784366 + }, + { + "status": 0, + "executed": 1692784666 + }, + { + "status": 0, + "executed": 1692784966 + }, + { + "status": 0, + "executed": 1692785266 + }, + { + "status": 0, + "executed": 1692785567 + }, + { + "status": 0, + "executed": 1692785867 + }, + { + "status": 0, + "executed": 1692786167 + }, + { + "status": 0, + "executed": 1692786468 + }, + { + "status": 0, + "executed": 1692786768 + }, + { + "status": 0, + "executed": 1692787068 + }, + { + "status": 0, + "executed": 1692787368 + }, + { + "status": 0, + "executed": 1692787669 + }, + { + "status": 0, + "executed": 1692787969 + }, + { + "status": 0, + "executed": 1692788269 + }, + { + "status": 0, + "executed": 1692788569 + }, + { + "status": 0, + "executed": 1692788870 + }, + { + "status": 0, + "executed": 1692789170 + }, + { + "status": 0, + "executed": 1692789470 + } + ], + "issued": 1692789469, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-9/0/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789470, + "occurrences": 20346, + "occurrences_watermark": 20346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-9-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5c9ac045-418f-4ce3-b62a-c97d080ca687", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789470 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net et-9/1/4 1247", + "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, + "duration": 0.612154042, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785629 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=et-9/1/4 ingressOctets=16475982917758029,egressOctets=28287621677013138,ingressErrors=12,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 23809, + "occurrences_watermark": 23809, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-et-9-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "646b3627-5510-4282-bbd3-b6eec9b8aba5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/1 607", + "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, + "duration": 0.41105063, + "executed": 1692789503, + "history": [ + { + "status": 0, + "executed": 1692783498 + }, + { + "status": 0, + "executed": 1692783798 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692784999 + }, + { + "status": 0, + "executed": 1692785299 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786201 + }, + { + "status": 0, + "executed": 1692786501 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787401 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788002 + }, + { + "status": 0, + "executed": 1692788302 + }, + { + "status": 0, + "executed": 1692788602 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789503 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/2/1 ingressOctets=3201472192,egressOctets=295802199,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789503, + "occurrences": 23809, + "occurrences_watermark": 23809, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "67fe61f6-55a4-4fc5-ab42-0dd1f23bc618", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/2 608", + "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, + "duration": 0.447318055, + "executed": 1692789478, + "history": [ + { + "status": 0, + "executed": 1692783472 + }, + { + "status": 0, + "executed": 1692783772 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784374 + }, + { + "status": 0, + "executed": 1692784674 + }, + { + "status": 0, + "executed": 1692784974 + }, + { + "status": 0, + "executed": 1692785275 + }, + { + "status": 0, + "executed": 1692785575 + }, + { + "status": 0, + "executed": 1692785875 + }, + { + "status": 0, + "executed": 1692786176 + }, + { + "status": 0, + "executed": 1692786476 + }, + { + "status": 0, + "executed": 1692786776 + }, + { + "status": 0, + "executed": 1692787076 + }, + { + "status": 0, + "executed": 1692787377 + }, + { + "status": 0, + "executed": 1692787677 + }, + { + "status": 0, + "executed": 1692787977 + }, + { + "status": 0, + "executed": 1692788278 + }, + { + "status": 0, + "executed": 1692788578 + }, + { + "status": 0, + "executed": 1692788878 + }, + { + "status": 0, + "executed": 1692789178 + }, + { + "status": 0, + "executed": 1692789478 + } + ], + "issued": 1692789478, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789478, + "occurrences": 23804, + "occurrences_watermark": 23804, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1634e9c0-018a-43be-8e7e-6c0a5ab30d9a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789479 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/3 609", + "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, + "duration": 0.437494262, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784576 + }, + { + "status": 0, + "executed": 1692784876 + }, + { + "status": 0, + "executed": 1692785176 + }, + { + "status": 0, + "executed": 1692785476 + }, + { + "status": 0, + "executed": 1692785776 + }, + { + "status": 0, + "executed": 1692786077 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786977 + }, + { + "status": 0, + "executed": 1692787277 + }, + { + "status": 0, + "executed": 1692787578 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788178 + }, + { + "status": 0, + "executed": 1692788478 + }, + { + "status": 0, + "executed": 1692788778 + }, + { + "status": 0, + "executed": 1692789079 + }, + { + "status": 0, + "executed": 1692789379 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aaf57e3e-3731-4842-b56a-8bc3b7d71169", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/4 610", + "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, + "duration": 0.486821312, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 23808, + "occurrences_watermark": 23808, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2c5b03f7-c46f-496d-be81-b4097c8f6fa9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/5 611", + "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, + "duration": 0.443400203, + "executed": 1692789507, + "history": [ + { + "status": 0, + "executed": 1692783503 + }, + { + "status": 0, + "executed": 1692783803 + }, + { + "status": 0, + "executed": 1692784103 + }, + { + "status": 0, + "executed": 1692784403 + }, + { + "status": 0, + "executed": 1692784703 + }, + { + "status": 0, + "executed": 1692785004 + }, + { + "status": 0, + "executed": 1692785304 + }, + { + "status": 0, + "executed": 1692785604 + }, + { + "status": 0, + "executed": 1692785904 + }, + { + "status": 0, + "executed": 1692786205 + }, + { + "status": 0, + "executed": 1692786505 + }, + { + "status": 0, + "executed": 1692786805 + }, + { + "status": 0, + "executed": 1692787105 + }, + { + "status": 0, + "executed": 1692787405 + }, + { + "status": 0, + "executed": 1692787706 + }, + { + "status": 0, + "executed": 1692788006 + }, + { + "status": 0, + "executed": 1692788306 + }, + { + "status": 0, + "executed": 1692788606 + }, + { + "status": 0, + "executed": 1692788907 + }, + { + "status": 0, + "executed": 1692789207 + }, + { + "status": 0, + "executed": 1692789507 + } + ], + "issued": 1692789506, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789507, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "904b499a-e781-4248-97a1-43fdfae2736e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789507 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/6 612", + "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, + "duration": 0.41455588, + "executed": 1692789530, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785326 + }, + { + "status": 0, + "executed": 1692785627 + }, + { + "status": 0, + "executed": 1692785927 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786528 + }, + { + "status": 0, + "executed": 1692786828 + }, + { + "status": 0, + "executed": 1692787128 + }, + { + "status": 0, + "executed": 1692787428 + }, + { + "status": 0, + "executed": 1692787729 + }, + { + "status": 0, + "executed": 1692788029 + }, + { + "status": 0, + "executed": 1692788329 + }, + { + "status": 0, + "executed": 1692788629 + }, + { + "status": 0, + "executed": 1692788930 + }, + { + "status": 0, + "executed": 1692789230 + }, + { + "status": 0, + "executed": 1692789530 + } + ], + "issued": 1692789529, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789530, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "05d2089c-307c-459a-a080-6c08da761fda", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/7 613", + "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, + "duration": 0.452430831, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "faa9a493-cf51-44b8-8838-c03197aea4fc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/8 614", + "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, + "duration": 0.472736162, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1b643e69-0714-41a2-a0c2-a8af9c12d238", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/2/9 615", + "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, + "duration": 0.433027051, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5da14c8f-a1f6-439a-b2d0-4091023374be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/0 616", + "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, + "duration": 0.473151411, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 7721, + "occurrences_watermark": 7721, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "44951674-59aa-49f8-b590-f2990c01263d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/1 617", + "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, + "duration": 0.465069002, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783715 + }, + { + "status": 0, + "executed": 1692784015 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785516 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787618 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b9884f91-3827-4329-8fa9-e0604c63abc6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/2 618", + "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, + "duration": 0.510599233, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783518 + }, + { + "status": 0, + "executed": 1692783818 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785019 + }, + { + "status": 0, + "executed": 1692785319 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787421 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788022 + }, + { + "status": 0, + "executed": 1692788322 + }, + { + "status": 0, + "executed": 1692788622 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/2 ingressOctets=1015235713,egressOctets=1003926668,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f47c75f6-d668-47b6-a0c0-6456a570f394", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/3 619", + "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, + "duration": 0.425347257, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/3 ingressOctets=386,egressOctets=102899185,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fd4e7c96-fbdb-420b-92a4-95d0197aa0ec", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4 620", + "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, + "duration": 0.495481217, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4 ingressOctets=311516211930,egressOctets=150297706406,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1164e6be-b4c5-4a8d-90d6-98b81b47dffd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.202 1451", + "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, + "duration": 0.502489139, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4.202 ingressOctets=548804517,egressOctets=293833042,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4.202", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4d9ce920-c08e-45fc-92b4-4e90bd5dd085", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.21 813", + "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, + "duration": 0.620671313, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4.21 ingressOctets=239515026,egressOctets=263477498,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c24b2a2e-51e6-4bda-9ef4-fcdfed86efa2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.22 814", + "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, + "duration": 0.478401412, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4.22 ingressOctets=158318118124,egressOctets=139730391053,ingressErrors=0,egressErrors=0,ingressOctetsv6=70703460208,egressOctetsv6=66271552388,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4397a052-29bf-487d-b583-7895741d1a48", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.23 768", + "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, + "duration": 0.520686103, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783844 + }, + { + "status": 0, + "executed": 1692784144 + }, + { + "status": 0, + "executed": 1692784444 + }, + { + "status": 0, + "executed": 1692784744 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787446 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788047 + }, + { + "status": 0, + "executed": 1692788347 + }, + { + "status": 0, + "executed": 1692788647 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4.23 ingressOctets=68238923,egressOctets=56955982,ingressErrors=0,egressErrors=0,ingressOctetsv6=355465,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4.23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a5273ad8-8f3b-417e-a7ac-3d47f92f36c2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.24 769", + "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, + "duration": 0.440699644, + "executed": 1692789512, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784108 + }, + { + "status": 0, + "executed": 1692784408 + }, + { + "status": 0, + "executed": 1692784708 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785609 + }, + { + "status": 0, + "executed": 1692785909 + }, + { + "status": 0, + "executed": 1692786210 + }, + { + "status": 0, + "executed": 1692786510 + }, + { + "status": 0, + "executed": 1692786810 + }, + { + "status": 0, + "executed": 1692787110 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787711 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788912 + }, + { + "status": 0, + "executed": 1692789212 + }, + { + "status": 0, + "executed": 1692789512 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4.24 ingressOctets=0,egressOctets=6404126,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789512, + "occurrences": 23803, + "occurrences_watermark": 23803, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4.24", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1e8991fd-ed71-495c-9aa9-4728f0c992c9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789512 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.25 680", + "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, + "duration": 0.449296808, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785326 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787428 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788029 + }, + { + "status": 0, + "executed": 1692788329 + }, + { + "status": 0, + "executed": 1692788629 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789529, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4.25 ingressOctets=247458052,egressOctets=254114671,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 20346, + "occurrences_watermark": 20346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4.25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5cebde4b-b3ed-4c20-83c8-c7399a19af8f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.302 1453", + "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, + "duration": 0.422164282, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783833 + }, + { + "status": 0, + "executed": 1692784133 + }, + { + "status": 0, + "executed": 1692784433 + }, + { + "status": 0, + "executed": 1692784733 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4.302 ingressOctets=548271388,egressOctets=293621152,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4.302", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "16eb78c9-1806-4cec-8f88-52290543166b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.402 1455", + "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, + "duration": 0.400550917, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783558 + }, + { + "status": 0, + "executed": 1692783858 + }, + { + "status": 0, + "executed": 1692784158 + }, + { + "status": 0, + "executed": 1692784458 + }, + { + "status": 0, + "executed": 1692784758 + }, + { + "status": 0, + "executed": 1692785059 + }, + { + "status": 0, + "executed": 1692785359 + }, + { + "status": 0, + "executed": 1692785659 + }, + { + "status": 0, + "executed": 1692785959 + }, + { + "status": 0, + "executed": 1692786260 + }, + { + "status": 0, + "executed": 1692786560 + }, + { + "status": 0, + "executed": 1692786860 + }, + { + "status": 0, + "executed": 1692787160 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787761 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788662 + }, + { + "status": 0, + "executed": 1692788962 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789562, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4.402 ingressOctets=548344682,egressOctets=293648039,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4.402", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9a4e2712-729a-4dc2-8494-032437361310", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789563 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.60 816", + "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, + "duration": 0.451527461, + "executed": 1692789640, + "history": [ + { + "status": 0, + "executed": 1692783635 + }, + { + "status": 0, + "executed": 1692783935 + }, + { + "status": 0, + "executed": 1692784235 + }, + { + "status": 0, + "executed": 1692784535 + }, + { + "status": 0, + "executed": 1692784836 + }, + { + "status": 0, + "executed": 1692785136 + }, + { + "status": 0, + "executed": 1692785436 + }, + { + "status": 0, + "executed": 1692785736 + }, + { + "status": 0, + "executed": 1692786037 + }, + { + "status": 0, + "executed": 1692786337 + }, + { + "status": 0, + "executed": 1692786638 + }, + { + "status": 0, + "executed": 1692786937 + }, + { + "status": 0, + "executed": 1692787237 + }, + { + "status": 0, + "executed": 1692787538 + }, + { + "status": 0, + "executed": 1692787838 + }, + { + "status": 0, + "executed": 1692788138 + }, + { + "status": 0, + "executed": 1692788439 + }, + { + "status": 0, + "executed": 1692788739 + }, + { + "status": 0, + "executed": 1692789039 + }, + { + "status": 0, + "executed": 1692789340 + }, + { + "status": 0, + "executed": 1692789640 + } + ], + "issued": 1692789639, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4.60 ingressOctets=111679473,egressOctets=116117469,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789640, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4.60", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "251fe0a3-9d30-4701-9731-9aea4f27ad01", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789640 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/4.991 628", + "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, + "duration": 0.425495287, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783477 + }, + { + "status": 0, + "executed": 1692783777 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784378 + }, + { + "status": 0, + "executed": 1692784678 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785579 + }, + { + "status": 0, + "executed": 1692785879 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786780 + }, + { + "status": 0, + "executed": 1692787080 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787681 + }, + { + "status": 0, + "executed": 1692787981 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788882 + }, + { + "status": 0, + "executed": 1692789182 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/4.991 ingressOctets=150837914767,egressOctets=8768286263,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 23816, + "occurrences_watermark": 23816, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-4.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d443381c-deea-49ea-b51b-4a58bbcee2d2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/5 621", + "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, + "duration": 0.451507519, + "executed": 1692789651, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784847 + }, + { + "status": 0, + "executed": 1692785147 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785748 + }, + { + "status": 0, + "executed": 1692786048 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786649 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787249 + }, + { + "status": 0, + "executed": 1692787549 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788150 + }, + { + "status": 0, + "executed": 1692788450 + }, + { + "status": 0, + "executed": 1692788750 + }, + { + "status": 0, + "executed": 1692789050 + }, + { + "status": 0, + "executed": 1692789351 + }, + { + "status": 0, + "executed": 1692789651 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789651, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a11c1e30-f07f-44dc-8750-0ff87f180bb5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/6 622", + "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, + "duration": 0.439627316, + "executed": 1692789686, + "history": [ + { + "status": 0, + "executed": 1692783682 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784583 + }, + { + "status": 0, + "executed": 1692784883 + }, + { + "status": 0, + "executed": 1692785183 + }, + { + "status": 0, + "executed": 1692785483 + }, + { + "status": 0, + "executed": 1692785784 + }, + { + "status": 0, + "executed": 1692786084 + }, + { + "status": 0, + "executed": 1692786384 + }, + { + "status": 0, + "executed": 1692786685 + }, + { + "status": 0, + "executed": 1692786984 + }, + { + "status": 0, + "executed": 1692787285 + }, + { + "status": 0, + "executed": 1692787585 + }, + { + "status": 0, + "executed": 1692787885 + }, + { + "status": 0, + "executed": 1692788185 + }, + { + "status": 0, + "executed": 1692788485 + }, + { + "status": 0, + "executed": 1692788786 + }, + { + "status": 0, + "executed": 1692789086 + }, + { + "status": 0, + "executed": 1692789386 + }, + { + "status": 0, + "executed": 1692789686 + } + ], + "issued": 1692789686, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789686, + "occurrences": 23805, + "occurrences_watermark": 23805, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "11c8581a-44ff-49de-83da-0ea915ee14c4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789687 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/7 623", + "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, + "duration": 0.540475871, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/7 ingressOctets=946613887,egressOctets=1018634569,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 23816, + "occurrences_watermark": 23816, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c5e6d5a5-8fe5-4edc-873d-4c14a8377905", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/7.0 881", + "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, + "duration": 0.483803168, + "executed": 1692789640, + "history": [ + { + "status": 0, + "executed": 1692783635 + }, + { + "status": 0, + "executed": 1692783935 + }, + { + "status": 0, + "executed": 1692784235 + }, + { + "status": 0, + "executed": 1692784535 + }, + { + "status": 0, + "executed": 1692784836 + }, + { + "status": 0, + "executed": 1692785136 + }, + { + "status": 0, + "executed": 1692785436 + }, + { + "status": 0, + "executed": 1692785737 + }, + { + "status": 0, + "executed": 1692786037 + }, + { + "status": 0, + "executed": 1692786337 + }, + { + "status": 0, + "executed": 1692786638 + }, + { + "status": 0, + "executed": 1692786937 + }, + { + "status": 0, + "executed": 1692787237 + }, + { + "status": 0, + "executed": 1692787538 + }, + { + "status": 0, + "executed": 1692787838 + }, + { + "status": 0, + "executed": 1692788138 + }, + { + "status": 0, + "executed": 1692788439 + }, + { + "status": 0, + "executed": 1692788739 + }, + { + "status": 0, + "executed": 1692789039 + }, + { + "status": 0, + "executed": 1692789340 + }, + { + "status": 0, + "executed": 1692789640 + } + ], + "issued": 1692789639, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/7.0 ingressOctets=946633585,egressOctets=1034068691,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789640, + "occurrences": 23804, + "occurrences_watermark": 23804, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c8697588-2c5a-45d6-aea2-0d45d5015c52", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789640 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/8 624", + "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, + "duration": 0.475109022, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783579 + }, + { + "status": 0, + "executed": 1692783879 + }, + { + "status": 0, + "executed": 1692784179 + }, + { + "status": 0, + "executed": 1692784479 + }, + { + "status": 0, + "executed": 1692784779 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785980 + }, + { + "status": 0, + "executed": 1692786280 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787481 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788082 + }, + { + "status": 0, + "executed": 1692788382 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789283 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 23815, + "occurrences_watermark": 23815, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8aab101e-76da-4a0d-a324-326bdd12b32f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net ge-0/3/9 625", + "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, + "duration": 0.507105376, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787551 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=ge-0/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-ge-0-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7755d883-815b-4c80-bb79-c91b0ce349d8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net irb.370 1326", + "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, + "duration": 0.484440503, + "executed": 1692789703, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785499 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789103 + }, + { + "status": 0, + "executed": 1692789403 + }, + { + "status": 0, + "executed": 1692789703 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=irb.370 ingressOctets=474427248540,egressOctets=248015698380,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789703, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-irb.370", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bd89a6e9-0726-423d-b59d-97f790e01384", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789703 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net irb.50 692", + "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, + "duration": 0.557592525, + "executed": 1692789631, + "history": [ + { + "status": 0, + "executed": 1692783627 + }, + { + "status": 0, + "executed": 1692783927 + }, + { + "status": 0, + "executed": 1692784227 + }, + { + "status": 0, + "executed": 1692784527 + }, + { + "status": 0, + "executed": 1692784827 + }, + { + "status": 0, + "executed": 1692785127 + }, + { + "status": 0, + "executed": 1692785427 + }, + { + "status": 0, + "executed": 1692785727 + }, + { + "status": 0, + "executed": 1692786028 + }, + { + "status": 0, + "executed": 1692786328 + }, + { + "status": 0, + "executed": 1692786629 + }, + { + "status": 0, + "executed": 1692786928 + }, + { + "status": 0, + "executed": 1692787228 + }, + { + "status": 0, + "executed": 1692787529 + }, + { + "status": 0, + "executed": 1692787829 + }, + { + "status": 0, + "executed": 1692788129 + }, + { + "status": 0, + "executed": 1692788430 + }, + { + "status": 0, + "executed": 1692788730 + }, + { + "status": 0, + "executed": 1692789030 + }, + { + "status": 0, + "executed": 1692789331 + }, + { + "status": 0, + "executed": 1692789631 + } + ], + "issued": 1692789630, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=irb.50 ingressOctets=2648676543,egressOctets=798792085,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789631, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-irb.50", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "23b24060-6bba-4d4c-a444-875bb033cd5e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789631 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net irb.999 678", + "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, + "duration": 0.443370871, + "executed": 1692789659, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784555 + }, + { + "status": 0, + "executed": 1692784855 + }, + { + "status": 0, + "executed": 1692785155 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786356 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788458 + }, + { + "status": 0, + "executed": 1692788758 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789359 + }, + { + "status": 0, + "executed": 1692789659 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=irb.999 ingressOctets=3160209832,egressOctets=183239731,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789659, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-irb.999", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bedec6ae-ace1-4409-8f2e-e3fa6c3531b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-0/0/0 1205", + "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, + "duration": 0.523529385, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785784 + }, + { + "status": 0, + "executed": 1692786084 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786685 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787285 + }, + { + "status": 0, + "executed": 1692787585 + }, + { + "status": 0, + "executed": 1692787885 + }, + { + "status": 0, + "executed": 1692788185 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788786 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789686, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=lt-0/0/0 ingressOctets=630458784,egressOctets=690852678,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-lt-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8fa4b1cc-9444-44f3-bfb8-5986929197c8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789687 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-0/0/0.12 1206", + "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, + "duration": 0.451698452, + "executed": 1692789654, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785150 + }, + { + "status": 0, + "executed": 1692785451 + }, + { + "status": 0, + "executed": 1692785751 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786952 + }, + { + "status": 0, + "executed": 1692787252 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787853 + }, + { + "status": 0, + "executed": 1692788153 + }, + { + "status": 0, + "executed": 1692788453 + }, + { + "status": 0, + "executed": 1692788753 + }, + { + "status": 0, + "executed": 1692789054 + }, + { + "status": 0, + "executed": 1692789354 + }, + { + "status": 0, + "executed": 1692789654 + } + ], + "issued": 1692789654, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=lt-0/0/0.12 ingressOctets=32296790,egressOctets=167578495,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789654, + "occurrences": 23537, + "occurrences_watermark": 23537, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-lt-0-0-0.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c9990b5b-d34c-4161-a8bc-6f1c48f61429", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789655 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-0/0/0.13 1208", + "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, + "duration": 0.520464423, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=lt-0/0/0.13 ingressOctets=96720881,egressOctets=356663788,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-lt-0-0-0.13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ff6ac0f-681d-4018-bb15-2e634cf12f1a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-0/0/0.21 1210", + "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, + "duration": 0.442082405, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783857 + }, + { + "status": 0, + "executed": 1692784157 + }, + { + "status": 0, + "executed": 1692784457 + }, + { + "status": 0, + "executed": 1692784757 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=lt-0/0/0.21 ingressOctets=158254797,egressOctets=41595141,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 23805, + "occurrences_watermark": 23805, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-lt-0-0-0.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f618d49-0fb9-4154-9651-07e69f6950f4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789562 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-0/0/0.31 1211", + "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, + "duration": 0.445231084, + "executed": 1692789648, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784542 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785743 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786645 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787546 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789648 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=lt-0/0/0.31 ingressOctets=342978109,egressOctets=124823164,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789648, + "occurrences": 23724, + "occurrences_watermark": 23724, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-lt-0-0-0.31", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9f8933f8-0b7a-4c1d-80fe-64611a59b2d3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-8/1/0 1602", + "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, + "duration": 0.487427556, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=lt-8/1/0 ingressOctets=1328132242437,egressOctets=1331056149127,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-lt-8-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f963dfcd-c7d9-403e-8ebf-cacc31662b70", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-8/1/0.1112 1607", + "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, + "duration": 0.542753914, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784443 + }, + { + "status": 0, + "executed": 1692784743 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786544 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787445 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788046 + }, + { + "status": 0, + "executed": 1692788346 + }, + { + "status": 0, + "executed": 1692788646 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=lt-8/1/0.1112 ingressOctets=303749824,egressOctets=35737223,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 23804, + "occurrences_watermark": 23804, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-lt-8-1-0.1112", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "346d32a7-2880-4a87-829d-5ec4fb9046cd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-8/1/0.16 1605", + "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, + "duration": 0.427282322, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=lt-8/1/0.16 ingressOctets=245984583875,egressOctets=1084609058778,ingressErrors=0,egressErrors=0,ingressOctetsv6=63604698215,egressOctetsv6=160622443931,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-lt-8-1-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2da3e3e4-4608-4b36-bd29-8f6d89959394", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-8/1/0.2111 1608", + "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, + "duration": 0.43722124, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=lt-8/1/0.2111 ingressOctets=26554149,egressOctets=308238744,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 23535, + "occurrences_watermark": 23535, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-lt-8-1-0.2111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c9e2cb6-beb7-45d6-a75a-9896e6f530bb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net lt-8/1/0.61 1606", + "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, + "duration": 0.538763246, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=lt-8/1/0.61 ingressOctets=1081820918913,egressOctets=245995967975,ingressErrors=0,egressErrors=0,ingressOctetsv6=175696561148,egressOctetsv6=64681753630,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-lt-8-1-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fcff0489-cf24-47de-9948-90fad1a3109f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/0/0 602", + "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, + "duration": 0.469081542, + "executed": 1692789561, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783856 + }, + { + "status": 0, + "executed": 1692784156 + }, + { + "status": 0, + "executed": 1692784456 + }, + { + "status": 0, + "executed": 1692784756 + }, + { + "status": 0, + "executed": 1692785057 + }, + { + "status": 0, + "executed": 1692785357 + }, + { + "status": 0, + "executed": 1692785657 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786258 + }, + { + "status": 0, + "executed": 1692786558 + }, + { + "status": 0, + "executed": 1692786858 + }, + { + "status": 0, + "executed": 1692787158 + }, + { + "status": 0, + "executed": 1692787459 + }, + { + "status": 0, + "executed": 1692787759 + }, + { + "status": 0, + "executed": 1692788060 + }, + { + "status": 0, + "executed": 1692788360 + }, + { + "status": 0, + "executed": 1692788660 + }, + { + "status": 0, + "executed": 1692788960 + }, + { + "status": 0, + "executed": 1692789261 + }, + { + "status": 0, + "executed": 1692789561 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-0/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789561, + "occurrences": 23817, + "occurrences_watermark": 23817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "38bd99c1-6269-427d-8f33-1f9e2d4fb29a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/0/1 603", + "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, + "duration": 0.44216311, + "executed": 1692789527, + "history": [ + { + "status": 0, + "executed": 1692783522 + }, + { + "status": 0, + "executed": 1692783822 + }, + { + "status": 0, + "executed": 1692784123 + }, + { + "status": 0, + "executed": 1692784423 + }, + { + "status": 0, + "executed": 1692784723 + }, + { + "status": 0, + "executed": 1692785023 + }, + { + "status": 0, + "executed": 1692785323 + }, + { + "status": 0, + "executed": 1692785624 + }, + { + "status": 0, + "executed": 1692785924 + }, + { + "status": 0, + "executed": 1692786224 + }, + { + "status": 0, + "executed": 1692786525 + }, + { + "status": 0, + "executed": 1692786825 + }, + { + "status": 0, + "executed": 1692787125 + }, + { + "status": 0, + "executed": 1692787425 + }, + { + "status": 0, + "executed": 1692787726 + }, + { + "status": 0, + "executed": 1692788026 + }, + { + "status": 0, + "executed": 1692788326 + }, + { + "status": 0, + "executed": 1692788626 + }, + { + "status": 0, + "executed": 1692788927 + }, + { + "status": 0, + "executed": 1692789227 + }, + { + "status": 0, + "executed": 1692789527 + } + ], + "issued": 1692789526, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-0/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789527, + "occurrences": 20344, + "occurrences_watermark": 20344, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8fbd338e-a17a-4d85-b6bc-2a672296bf7c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789527 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/1/0 604", + "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, + "duration": 0.479430196, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783548 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785049 + }, + { + "status": 0, + "executed": 1692785349 + }, + { + "status": 0, + "executed": 1692785649 + }, + { + "status": 0, + "executed": 1692785949 + }, + { + "status": 0, + "executed": 1692786249 + }, + { + "status": 0, + "executed": 1692786550 + }, + { + "status": 0, + "executed": 1692786850 + }, + { + "status": 0, + "executed": 1692787150 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787751 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-0/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 23798, + "occurrences_watermark": 23798, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7e1718d7-e0b5-4b9c-83d3-d6d6042f3c6e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/1/1 605", + "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, + "duration": 0.448281584, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-0/1/1 ingressOctets=530056329445060,egressOctets=522805050074508,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=33455619\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 23722, + "occurrences_watermark": 23722, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "60d48327-de75-4524-b34b-3ecae6acc11f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/1/1.1100 767", + "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, + "duration": 0.440653125, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783523 + }, + { + "status": 0, + "executed": 1692783823 + }, + { + "status": 0, + "executed": 1692784124 + }, + { + "status": 0, + "executed": 1692784424 + }, + { + "status": 0, + "executed": 1692784724 + }, + { + "status": 0, + "executed": 1692785024 + }, + { + "status": 0, + "executed": 1692785324 + }, + { + "status": 0, + "executed": 1692785625 + }, + { + "status": 0, + "executed": 1692785925 + }, + { + "status": 0, + "executed": 1692786225 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786826 + }, + { + "status": 0, + "executed": 1692787126 + }, + { + "status": 0, + "executed": 1692787426 + }, + { + "status": 0, + "executed": 1692787727 + }, + { + "status": 0, + "executed": 1692788027 + }, + { + "status": 0, + "executed": 1692788327 + }, + { + "status": 0, + "executed": 1692788627 + }, + { + "status": 0, + "executed": 1692788928 + }, + { + "status": 0, + "executed": 1692789228 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789527, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-0/1/1.1100 ingressOctets=527463833928718,egressOctets=516039518751316,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-0-1-1.1100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2b391a2a-2544-4148-b87f-7f69d5a2c56d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789528 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/1/1.1200 807", + "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, + "duration": 1.448651921, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783516 + }, + { + "status": 0, + "executed": 1692783816 + }, + { + "status": 0, + "executed": 1692784116 + }, + { + "status": 0, + "executed": 1692784416 + }, + { + "status": 0, + "executed": 1692784716 + }, + { + "status": 0, + "executed": 1692785017 + }, + { + "status": 0, + "executed": 1692785317 + }, + { + "status": 0, + "executed": 1692785617 + }, + { + "status": 0, + "executed": 1692785917 + }, + { + "status": 0, + "executed": 1692786218 + }, + { + "status": 0, + "executed": 1692786518 + }, + { + "status": 0, + "executed": 1692786818 + }, + { + "status": 0, + "executed": 1692787118 + }, + { + "status": 0, + "executed": 1692787419 + }, + { + "status": 0, + "executed": 1692787719 + }, + { + "status": 0, + "executed": 1692788020 + }, + { + "status": 0, + "executed": 1692788320 + }, + { + "status": 0, + "executed": 1692788620 + }, + { + "status": 0, + "executed": 1692788920 + }, + { + "status": 0, + "executed": 1692789220 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-0/1/1.1200 ingressOctets=2591898657817,egressOctets=6764336647077,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 23799, + "occurrences_watermark": 23799, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-0-1-1.1200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6c55f233-cc20-4d0a-80af-d329dd742bd2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/1/1.472 1258", + "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, + "duration": 0.471775318, + "executed": 1692789696, + "history": [ + { + "status": 0, + "executed": 1692783692 + }, + { + "status": 0, + "executed": 1692783993 + }, + { + "status": 0, + "executed": 1692784293 + }, + { + "status": 0, + "executed": 1692784593 + }, + { + "status": 0, + "executed": 1692784893 + }, + { + "status": 0, + "executed": 1692785193 + }, + { + "status": 0, + "executed": 1692785493 + }, + { + "status": 0, + "executed": 1692785794 + }, + { + "status": 0, + "executed": 1692786094 + }, + { + "status": 0, + "executed": 1692786394 + }, + { + "status": 0, + "executed": 1692786694 + }, + { + "status": 0, + "executed": 1692786994 + }, + { + "status": 0, + "executed": 1692787295 + }, + { + "status": 0, + "executed": 1692787595 + }, + { + "status": 0, + "executed": 1692787895 + }, + { + "status": 0, + "executed": 1692788195 + }, + { + "status": 0, + "executed": 1692788495 + }, + { + "status": 0, + "executed": 1692788796 + }, + { + "status": 0, + "executed": 1692789096 + }, + { + "status": 0, + "executed": 1692789396 + }, + { + "status": 0, + "executed": 1692789696 + } + ], + "issued": 1692789695, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-0/1/1.472 ingressOctets=21322102,egressOctets=54842938,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789696, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-0-1-1.472", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eb290b6a-6453-41c4-9cb6-78ab79ae0c91", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789696 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-0/1/1.937 1260", + "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, + "duration": 0.414740739, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-0/1/1.937 ingressOctets=14883382,egressOctets=2676630,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 23813, + "occurrences_watermark": 23813, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-0-1-1.937", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "888bfbb0-f2c7-41e1-950c-0ab14335dd5e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/0 556", + "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, + "duration": 0.447184611, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 23720, + "occurrences_watermark": 23720, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0de5fa34-9ddf-43e4-8701-b32e1472476e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/1 557", + "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, + "duration": 0.403551055, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787307 + }, + { + "status": 0, + "executed": 1692787607 + }, + { + "status": 0, + "executed": 1692787907 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788808 + }, + { + "status": 0, + "executed": 1692789108 + }, + { + "status": 0, + "executed": 1692789408 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/1 ingressOctets=163975529256789,egressOctets=823332560249443,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "39738c91-2c2a-4cf3-90d0-b28806169a76", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/1.0 644", + "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, + "duration": 0.434729324, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/1.0 ingressOctets=163975262420401,egressOctets=823332569668264,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1c7b6c63-81b6-4a66-922e-6a7d63bf39be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/2 1297", + "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, + "duration": 0.458299598, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/2 ingressOctets=3523725783874,egressOctets=1363375693962,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 23803, + "occurrences_watermark": 23803, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bab056f8-04e0-4833-bbfd-b0896a10bda4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/2.0 1387", + "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, + "duration": 0.476204662, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786302 + }, + { + "status": 0, + "executed": 1692786602 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/2.0 ingressOctets=3523725815979,egressOctets=1363391127370,ingressErrors=0,egressErrors=0,ingressOctetsv6=1068921923080,egressOctetsv6=904521898858,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "54ebbcac-2828-4641-bee3-08ecf479f072", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/3 1292", + "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, + "duration": 0.466100038, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/3 ingressOctets=276972952559055,egressOctets=1046219992133536,ingressErrors=55,egressErrors=0,ingressDiscards=0,egressDiscards=24406\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0dd3fcee-ee05-4f66-b164-d10d64e6e373", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/4 1293", + "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, + "duration": 0.432197039, + "executed": 1692789544, + "history": [ + { + "status": 0, + "executed": 1692783540 + }, + { + "status": 0, + "executed": 1692783841 + }, + { + "status": 0, + "executed": 1692784141 + }, + { + "status": 0, + "executed": 1692784441 + }, + { + "status": 0, + "executed": 1692784741 + }, + { + "status": 0, + "executed": 1692785041 + }, + { + "status": 0, + "executed": 1692785341 + }, + { + "status": 0, + "executed": 1692785641 + }, + { + "status": 0, + "executed": 1692785941 + }, + { + "status": 0, + "executed": 1692786241 + }, + { + "status": 0, + "executed": 1692786542 + }, + { + "status": 0, + "executed": 1692786842 + }, + { + "status": 0, + "executed": 1692787142 + }, + { + "status": 0, + "executed": 1692787443 + }, + { + "status": 0, + "executed": 1692787743 + }, + { + "status": 0, + "executed": 1692788044 + }, + { + "status": 0, + "executed": 1692788344 + }, + { + "status": 0, + "executed": 1692788644 + }, + { + "status": 0, + "executed": 1692788944 + }, + { + "status": 0, + "executed": 1692789244 + }, + { + "status": 0, + "executed": 1692789544 + } + ], + "issued": 1692789544, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/4 ingressOctets=6855596530,egressOctets=15395334161,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789544, + "occurrences": 23803, + "occurrences_watermark": 23803, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9a568b36-b16f-4ff9-b4e4-53ef51ccf0b9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789545 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/4.0 1317", + "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, + "duration": 0.432309652, + "executed": 1692789569, + "history": [ + { + "status": 0, + "executed": 1692783563 + }, + { + "status": 0, + "executed": 1692783863 + }, + { + "status": 0, + "executed": 1692784163 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785365 + }, + { + "status": 0, + "executed": 1692785665 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786566 + }, + { + "status": 0, + "executed": 1692786866 + }, + { + "status": 0, + "executed": 1692787166 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787767 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788668 + }, + { + "status": 0, + "executed": 1692788968 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789569 + } + ], + "issued": 1692789568, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/4.0 ingressOctets=6855586422,egressOctets=15410757473,ingressErrors=0,egressErrors=0,ingressOctetsv6=3121239699,egressOctetsv6=12754376743,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789569, + "occurrences": 23807, + "occurrences_watermark": 23807, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d7e84271-5298-4878-a259-018bd8e9a38e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789569 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/5 1294", + "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, + "duration": 0.478484597, + "executed": 1692789573, + "history": [ + { + "status": 0, + "executed": 1692783569 + }, + { + "status": 0, + "executed": 1692783869 + }, + { + "status": 0, + "executed": 1692784169 + }, + { + "status": 0, + "executed": 1692784469 + }, + { + "status": 0, + "executed": 1692784769 + }, + { + "status": 0, + "executed": 1692785069 + }, + { + "status": 0, + "executed": 1692785369 + }, + { + "status": 0, + "executed": 1692785669 + }, + { + "status": 0, + "executed": 1692785970 + }, + { + "status": 0, + "executed": 1692786270 + }, + { + "status": 0, + "executed": 1692786570 + }, + { + "status": 0, + "executed": 1692786870 + }, + { + "status": 0, + "executed": 1692787170 + }, + { + "status": 0, + "executed": 1692787471 + }, + { + "status": 0, + "executed": 1692787771 + }, + { + "status": 0, + "executed": 1692788072 + }, + { + "status": 0, + "executed": 1692788372 + }, + { + "status": 0, + "executed": 1692788672 + }, + { + "status": 0, + "executed": 1692788972 + }, + { + "status": 0, + "executed": 1692789273 + }, + { + "status": 0, + "executed": 1692789573 + } + ], + "issued": 1692789572, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789573, + "occurrences": 7721, + "occurrences_watermark": 7721, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "33b71401-f583-4ab8-b30c-ca2a300fd133", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789573 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/6 1295", + "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, + "duration": 0.423401976, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783851 + }, + { + "status": 0, + "executed": 1692784151 + }, + { + "status": 0, + "executed": 1692784451 + }, + { + "status": 0, + "executed": 1692784751 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787453 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788054 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788654 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789554, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/6 ingressOctets=132616011436,egressOctets=108229080490,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 20342, + "occurrences_watermark": 20342, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "87dfe2c9-6a8b-4ae0-a4c7-fb5738c9e016", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789555 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/6.0 1318", + "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, + "duration": 0.462071758, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/6.0 ingressOctets=132616103797,egressOctets=108244569946,ingressErrors=0,egressErrors=0,ingressOctetsv6=112817526968,egressOctetsv6=89766595720,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 20513, + "occurrences_watermark": 20513, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "78f843b2-c0f5-45de-b7d1-1b0b0aa7f278", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/7 1296", + "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, + "duration": 0.543507737, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783518 + }, + { + "status": 0, + "executed": 1692783818 + }, + { + "status": 0, + "executed": 1692784118 + }, + { + "status": 0, + "executed": 1692784418 + }, + { + "status": 0, + "executed": 1692784718 + }, + { + "status": 0, + "executed": 1692785019 + }, + { + "status": 0, + "executed": 1692785319 + }, + { + "status": 0, + "executed": 1692785619 + }, + { + "status": 0, + "executed": 1692785919 + }, + { + "status": 0, + "executed": 1692786219 + }, + { + "status": 0, + "executed": 1692786520 + }, + { + "status": 0, + "executed": 1692786820 + }, + { + "status": 0, + "executed": 1692787120 + }, + { + "status": 0, + "executed": 1692787420 + }, + { + "status": 0, + "executed": 1692787721 + }, + { + "status": 0, + "executed": 1692788021 + }, + { + "status": 0, + "executed": 1692788321 + }, + { + "status": 0, + "executed": 1692788621 + }, + { + "status": 0, + "executed": 1692788922 + }, + { + "status": 0, + "executed": 1692789222 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/7 ingressOctets=93573872077347,egressOctets=126065531208663,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=644176\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "89b39c00-37fc-4e86-9506-4345b25e0093", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/0/7.0 1319", + "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, + "duration": 0.458416766, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783851 + }, + { + "status": 0, + "executed": 1692784151 + }, + { + "status": 0, + "executed": 1692784451 + }, + { + "status": 0, + "executed": 1692784751 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787453 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788054 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788654 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789554, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/0/7.0 ingressOctets=93573872083672,egressOctets=126065531208413,ingressErrors=0,egressErrors=0,ingressOctetsv6=46368326248416,egressOctetsv6=61982774039682,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 23817, + "occurrences_watermark": 23817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-0-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "473d9b36-8e7d-409f-88df-3cf64b1ee6b6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789555 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/0 558", + "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, + "duration": 0.464485684, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/0 ingressOctets=22436026,egressOctets=93610760,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bee68289-d81f-455f-b3a2-00ed14a4fb0f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/1 559", + "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, + "duration": 0.521243834, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783843 + }, + { + "status": 0, + "executed": 1692784143 + }, + { + "status": 0, + "executed": 1692784443 + }, + { + "status": 0, + "executed": 1692784743 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786544 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787445 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788046 + }, + { + "status": 0, + "executed": 1692788346 + }, + { + "status": 0, + "executed": 1692788646 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/1 ingressOctets=276297928783391,egressOctets=1049688410474664,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "02260e31-3bc5-4b6a-9a7b-b4964425b296", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/2 1298", + "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, + "duration": 0.440194745, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 23803, + "occurrences_watermark": 23803, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7686cf19-96c5-41c0-83e8-622c16695935", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/3 1299", + "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, + "duration": 0.405887895, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/3 ingressOctets=482703710031,egressOctets=252013833523,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 23806, + "occurrences_watermark": 23806, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "34e51e9d-fa70-4b05-9a19-b64f96c8add0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/4 1300", + "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, + "duration": 0.425928574, + "executed": 1692789613, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784809 + }, + { + "status": 0, + "executed": 1692785109 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789613 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/4 ingressOctets=54198365634,egressOctets=107052955164,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789613, + "occurrences": 23817, + "occurrences_watermark": 23817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a88b4fcb-b5c1-4797-be73-df1832a3232d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/4.1337 1259", + "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, + "duration": 0.524178595, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/4.1337 ingressOctets=12115310449,egressOctets=13403347554,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 20511, + "occurrences_watermark": 20511, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-4.1337", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9f0955bd-3dab-42c5-954d-001ed5c609e1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/4.1627 1261", + "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, + "duration": 0.59661369, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783514 + }, + { + "status": 0, + "executed": 1692783814 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785015 + }, + { + "status": 0, + "executed": 1692785315 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787417 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788018 + }, + { + "status": 0, + "executed": 1692788318 + }, + { + "status": 0, + "executed": 1692788618 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789522, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/4.1627 ingressOctets=144770,egressOctets=126348,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 23821, + "occurrences_watermark": 23821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-4.1627", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "30fa4f10-bb3b-411e-a739-153eb2d47551", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789523 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/4.200 728", + "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, + "duration": 0.471108823, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786302 + }, + { + "status": 0, + "executed": 1692786602 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/4.200 ingressOctets=42082775796,egressOctets=93533806762,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 23803, + "occurrences_watermark": 23803, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-4.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6796579b-870b-48fe-9ee2-9fa81ab8a759", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/5 1301", + "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, + "duration": 0.462160141, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 7721, + "occurrences_watermark": 7721, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a10b0825-9169-459c-a87a-18063b23cd5d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/6 1302", + "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, + "duration": 0.440455183, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 23801, + "occurrences_watermark": 23801, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "48a81b8e-591d-4d65-b7a3-2a13f0c65a0c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/1/7 1303", + "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, + "duration": 0.420654296, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789584, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/1/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-1-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b406de98-4c13-431d-a184-138ea96227a8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/0 1304", + "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, + "duration": 0.425838377, + "executed": 1692789545, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789545 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/2/0 ingressOctets=40841230398267,egressOctets=154810434439568,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=366604\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789545, + "occurrences": 23724, + "occurrences_watermark": 23724, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "14c6d0e4-3f36-42a6-a84f-465ef07aec47", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/1 1305", + "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, + "duration": 0.387165846, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789102 + }, + { + "status": 0, + "executed": 1692789402 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 23540, + "occurrences_watermark": 23540, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "05ee2dbe-40c1-4ba1-aa93-dc65bf9ca31b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789702 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/2 1306", + "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, + "duration": 0.471331939, + "executed": 1692789541, + "history": [ + { + "status": 0, + "executed": 1692783537 + }, + { + "status": 0, + "executed": 1692783838 + }, + { + "status": 0, + "executed": 1692784138 + }, + { + "status": 0, + "executed": 1692784438 + }, + { + "status": 0, + "executed": 1692784738 + }, + { + "status": 0, + "executed": 1692785038 + }, + { + "status": 0, + "executed": 1692785338 + }, + { + "status": 0, + "executed": 1692785638 + }, + { + "status": 0, + "executed": 1692785938 + }, + { + "status": 0, + "executed": 1692786239 + }, + { + "status": 0, + "executed": 1692786539 + }, + { + "status": 0, + "executed": 1692786839 + }, + { + "status": 0, + "executed": 1692787139 + }, + { + "status": 0, + "executed": 1692787440 + }, + { + "status": 0, + "executed": 1692787740 + }, + { + "status": 0, + "executed": 1692788041 + }, + { + "status": 0, + "executed": 1692788341 + }, + { + "status": 0, + "executed": 1692788641 + }, + { + "status": 0, + "executed": 1692788941 + }, + { + "status": 0, + "executed": 1692789241 + }, + { + "status": 0, + "executed": 1692789541 + } + ], + "issued": 1692789541, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789541, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e703d67-709a-4c86-b57c-e098aa3a4384", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789542 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/3 1307", + "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, + "duration": 0.481776089, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/2/3 ingressOctets=701402572,egressOctets=844964067,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 20344, + "occurrences_watermark": 20344, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5937800a-369e-4a21-a156-e5f6268d4073", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/4 1308", + "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, + "duration": 0.438437492, + "executed": 1692789581, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785077 + }, + { + "status": 0, + "executed": 1692785377 + }, + { + "status": 0, + "executed": 1692785677 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786578 + }, + { + "status": 0, + "executed": 1692786878 + }, + { + "status": 0, + "executed": 1692787178 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787779 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788680 + }, + { + "status": 0, + "executed": 1692788980 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789581 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/2/4 ingressOctets=45944448,egressOctets=101870678,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789581, + "occurrences": 23816, + "occurrences_watermark": 23816, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0823cf7b-c481-4917-81d1-ae818072135a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/4.1629 1262", + "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, + "duration": 0.417467537, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783699 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784600 + }, + { + "status": 0, + "executed": 1692784900 + }, + { + "status": 0, + "executed": 1692785200 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786101 + }, + { + "status": 0, + "executed": 1692786401 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787001 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789103 + }, + { + "status": 0, + "executed": 1692789403 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/2/4.1629 ingressOctets=0,egressOctets=6498,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 23809, + "occurrences_watermark": 23809, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-2-4.1629", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "965e1cb4-7f23-4ae9-af0b-46362de75e54", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789703 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/5 1336", + "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, + "duration": 0.473667078, + "executed": 1692789636, + "history": [ + { + "status": 0, + "executed": 1692783631 + }, + { + "status": 0, + "executed": 1692783931 + }, + { + "status": 0, + "executed": 1692784231 + }, + { + "status": 0, + "executed": 1692784531 + }, + { + "status": 0, + "executed": 1692784832 + }, + { + "status": 0, + "executed": 1692785132 + }, + { + "status": 0, + "executed": 1692785432 + }, + { + "status": 0, + "executed": 1692785732 + }, + { + "status": 0, + "executed": 1692786033 + }, + { + "status": 0, + "executed": 1692786333 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786933 + }, + { + "status": 0, + "executed": 1692787234 + }, + { + "status": 0, + "executed": 1692787534 + }, + { + "status": 0, + "executed": 1692787834 + }, + { + "status": 0, + "executed": 1692788134 + }, + { + "status": 0, + "executed": 1692788435 + }, + { + "status": 0, + "executed": 1692788735 + }, + { + "status": 0, + "executed": 1692789035 + }, + { + "status": 0, + "executed": 1692789336 + }, + { + "status": 0, + "executed": 1692789636 + } + ], + "issued": 1692789635, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789636, + "occurrences": 23818, + "occurrences_watermark": 23818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7d84a21e-72b8-4225-8939-e1dfc79575bc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789636 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/6 1337", + "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, + "duration": 0.4318343, + "executed": 1692789569, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785365 + }, + { + "status": 0, + "executed": 1692785665 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786566 + }, + { + "status": 0, + "executed": 1692786866 + }, + { + "status": 0, + "executed": 1692787166 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787767 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788668 + }, + { + "status": 0, + "executed": 1692788968 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789569 + } + ], + "issued": 1692789568, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789569, + "occurrences": 23816, + "occurrences_watermark": 23816, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ccf95314-7b8b-4097-bf56-242686c42e60", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789569 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/2/7 1335", + "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, + "duration": 0.468331311, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 7721, + "occurrences_watermark": 7721, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cd84fa24-ce47-4db5-b1ab-652d65f2cf06", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/0 1338", + "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, + "duration": 0.45478182, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 7721, + "occurrences_watermark": 7721, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ca15a4c7-2bf4-4979-846f-4a32b201acda", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/1 1339", + "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, + "duration": 0.505253607, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783523 + }, + { + "status": 0, + "executed": 1692783824 + }, + { + "status": 0, + "executed": 1692784124 + }, + { + "status": 0, + "executed": 1692784424 + }, + { + "status": 0, + "executed": 1692784724 + }, + { + "status": 0, + "executed": 1692785024 + }, + { + "status": 0, + "executed": 1692785324 + }, + { + "status": 0, + "executed": 1692785625 + }, + { + "status": 0, + "executed": 1692785925 + }, + { + "status": 0, + "executed": 1692786226 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786826 + }, + { + "status": 0, + "executed": 1692787126 + }, + { + "status": 0, + "executed": 1692787426 + }, + { + "status": 0, + "executed": 1692787727 + }, + { + "status": 0, + "executed": 1692788027 + }, + { + "status": 0, + "executed": 1692788327 + }, + { + "status": 0, + "executed": 1692788627 + }, + { + "status": 0, + "executed": 1692788928 + }, + { + "status": 0, + "executed": 1692789228 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789527, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 23803, + "occurrences_watermark": 23803, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "692f0b7f-51e3-4f36-a821-00eb4e8d892a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789528 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/2 1340", + "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, + "duration": 0.471426214, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 23803, + "occurrences_watermark": 23803, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "18bd02cb-7029-428a-9c96-abe0bd005482", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/3 1341", + "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, + "duration": 0.541832128, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785629 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c3755ed0-5dd7-4ef3-86be-b33bd1eb8f5d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/4 1342", + "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, + "duration": 0.482419751, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 23804, + "occurrences_watermark": 23804, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6c33eaf9-56d0-4bfb-8422-bd4bf7ed220e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/5 1343", + "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, + "duration": 0.437111613, + "executed": 1692789597, + "history": [ + { + "status": 0, + "executed": 1692783593 + }, + { + "status": 0, + "executed": 1692783893 + }, + { + "status": 0, + "executed": 1692784193 + }, + { + "status": 0, + "executed": 1692784493 + }, + { + "status": 0, + "executed": 1692784793 + }, + { + "status": 0, + "executed": 1692785093 + }, + { + "status": 0, + "executed": 1692785393 + }, + { + "status": 0, + "executed": 1692785693 + }, + { + "status": 0, + "executed": 1692785993 + }, + { + "status": 0, + "executed": 1692786294 + }, + { + "status": 0, + "executed": 1692786594 + }, + { + "status": 0, + "executed": 1692786894 + }, + { + "status": 0, + "executed": 1692787195 + }, + { + "status": 0, + "executed": 1692787495 + }, + { + "status": 0, + "executed": 1692787795 + }, + { + "status": 0, + "executed": 1692788096 + }, + { + "status": 0, + "executed": 1692788396 + }, + { + "status": 0, + "executed": 1692788696 + }, + { + "status": 0, + "executed": 1692788996 + }, + { + "status": 0, + "executed": 1692789297 + }, + { + "status": 0, + "executed": 1692789597 + } + ], + "issued": 1692789597, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789597, + "occurrences": 23820, + "occurrences_watermark": 23820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ca24a457-5d99-4a41-b135-2cea50431423", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789598 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/6 1344", + "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, + "duration": 0.400088744, + "executed": 1692789585, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784781 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786582 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787182 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789585 + } + ], + "issued": 1692789584, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789585, + "occurrences": 23819, + "occurrences_watermark": 23819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f3b24856-58e1-4444-ab81-cf9e5bea723f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.gen.ch.geant.net xe-2/3/7 1345", + "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, + "duration": 0.541250509, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.gen.ch.geant.net,interface_name=xe-2/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 20346, + "occurrences_watermark": 20346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.gen.ch.geant.net-xe-2-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.gen.ch.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.gen.ch.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ec2d3daa-0d56-4bb1-882a-52030aa19dad", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.ham.de.geant.net", + "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, + "duration": 4.513870497, + "executed": 1692789708, + "history": [ + { + "status": 1, + "executed": 1692783703 + }, + { + "status": 1, + "executed": 1692784004 + }, + { + "status": 1, + "executed": 1692784304 + }, + { + "status": 1, + "executed": 1692784604 + }, + { + "status": 1, + "executed": 1692784904 + }, + { + "status": 1, + "executed": 1692785205 + }, + { + "status": 1, + "executed": 1692785505 + }, + { + "status": 1, + "executed": 1692785805 + }, + { + "status": 1, + "executed": 1692786105 + }, + { + "status": 1, + "executed": 1692786409 + }, + { + "status": 1, + "executed": 1692786707 + }, + { + "status": 1, + "executed": 1692787007 + }, + { + "status": 1, + "executed": 1692787307 + }, + { + "status": 1, + "executed": 1692787607 + }, + { + "status": 1, + "executed": 1692787907 + }, + { + "status": 1, + "executed": 1692788208 + }, + { + "status": 1, + "executed": 1692788508 + }, + { + "status": 1, + "executed": 1692788808 + }, + { + "status": 1, + "executed": 1692789108 + }, + { + "status": 1, + "executed": 1692789408 + }, + { + "status": 1, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "2023-08-23 11:21:49,097 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:21:49,098 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:21:49,098 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:21:49,098 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.ham.de.geant.net\n2023-08-23 11:21:49,101 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:21:49,118 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.ham.de.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.1 octets=368317781802\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.2 octets=24467320367\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.3 octets=0\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.4 octets=0\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.5 octets=0\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.6 octets=0\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.7 octets=0\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.8 octets=44587425556\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.9 octets=25992335441\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.10 octets=770828787828\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.11 octets=378233421700\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.12 octets=358916794214\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.13 octets=1466003487639\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.14 octets=25582870798\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.15 octets=766517040629\nmulticast,hostname=mx1.ham.de.geant.net,subscription=232.223.222.16 octets=474574682736\n2023-08-23 11:21:53,261 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.17,232.223.222.18,232.223.222.19,232.223.222.20,232.223.222.21,232.223.222.22,232.223.222.23,232.223.222.24,232.223.222.25,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.29,232.223.222.30,232.223.222.31,232.223.222.32,232.223.222.33,232.223.222.34,232.223.222.35,232.223.222.36,232.223.222.37,232.223.222.38,232.223.222.39,232.223.222.40,232.223.222.41,232.223.222.42,232.223.222.43,232.223.222.44,232.223.222.45,232.223.222.46,232.223.222.47,232.223.222.48,232.223.222.49,232.223.222.50,232.223.222.51,232.223.222.52,232.223.222.53,232.223.222.54,232.223.222.55,232.223.222.56,232.223.222.57,232.223.222.58,232.223.222.59,232.223.222.60,232.223.222.61,232.223.222.62,232.223.222.63,232.223.222.64,232.223.222.65,232.223.222.66,232.223.222.67,232.223.222.68,232.223.222.69,232.223.222.70,232.223.222.71,232.223.222.72,232.223.223.1,232.223.223.22\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 1687362175, + "occurrences": 18072, + "occurrences_watermark": 18072, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.ham.de.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "52491e40-4d91-4969-800a-e56240ae0d46", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3893, + "timestamp": 1692789713 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae0 564", + "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, + "duration": 0.431602844, + "executed": 1692789597, + "history": [ + { + "status": 0, + "executed": 1692783592 + }, + { + "status": 0, + "executed": 1692783892 + }, + { + "status": 0, + "executed": 1692784192 + }, + { + "status": 0, + "executed": 1692784492 + }, + { + "status": 0, + "executed": 1692784793 + }, + { + "status": 0, + "executed": 1692785093 + }, + { + "status": 0, + "executed": 1692785393 + }, + { + "status": 0, + "executed": 1692785693 + }, + { + "status": 0, + "executed": 1692785993 + }, + { + "status": 0, + "executed": 1692786294 + }, + { + "status": 0, + "executed": 1692786594 + }, + { + "status": 0, + "executed": 1692786894 + }, + { + "status": 0, + "executed": 1692787194 + }, + { + "status": 0, + "executed": 1692787494 + }, + { + "status": 0, + "executed": 1692787795 + }, + { + "status": 0, + "executed": 1692788095 + }, + { + "status": 0, + "executed": 1692788395 + }, + { + "status": 0, + "executed": 1692788696 + }, + { + "status": 0, + "executed": 1692788996 + }, + { + "status": 0, + "executed": 1692789296 + }, + { + "status": 0, + "executed": 1692789597 + } + ], + "issued": 1692789596, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae0 ingressOctets=47566237173986557,egressOctets=30706871814437588,ingressErrors=30028,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789597, + "occurrences": 18354, + "occurrences_watermark": 18354, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3dfc2cc7-5d4a-455a-9e71-c5722523659c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789597 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae0.0 573", + "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, + "duration": 0.583622789, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae0.0 ingressOctets=47566240702401001,egressOctets=30706886612663679,ingressErrors=0,egressErrors=0,ingressOctetsv6=5718461235933309,egressOctetsv6=1989582664647538,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 18354, + "occurrences_watermark": 18354, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e5740cc4-0953-4ce2-9967-ec4303e39e5a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae1 565", + "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, + "duration": 0.468368387, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae1 ingressOctets=30254002763613657,egressOctets=29166385318148998,ingressErrors=887,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d5fc6683-0812-4d56-9a60-3908068f9f2a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae1.0 631", + "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, + "duration": 0.427414089, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783595 + }, + { + "status": 0, + "executed": 1692783895 + }, + { + "status": 0, + "executed": 1692784195 + }, + { + "status": 0, + "executed": 1692784495 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787197 + }, + { + "status": 0, + "executed": 1692787497 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788098 + }, + { + "status": 0, + "executed": 1692788398 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789299 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789599, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae1.0 ingressOctets=30253876602734921,egressOctets=29166343227202124,ingressErrors=0,egressErrors=0,ingressOctetsv6=3957499230915951,egressOctetsv6=3462606486970744,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b4e59ea1-3f74-48bf-9bed-181f112502ce", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789600 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10 577", + "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, + "duration": 0.537864111, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae10 ingressOctets=43907188328576299,egressOctets=60673887073796120,ingressErrors=10309,egressErrors=3,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "56afcf6d-52da-4e43-8789-26e006fe1537", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.100 606", + "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, + "duration": 0.605357547, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae10.100 ingressOctets=20133446805913375,egressOctets=26620991543212253,ingressErrors=0,egressErrors=0,ingressOctetsv6=6937181903667944,egressOctetsv6=8882599457940159,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae10.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1f121ef3-4349-4838-8903-39b236e9b1cf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.111 608", + "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, + "duration": 0.42792479, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785363 + }, + { + "status": 0, + "executed": 1692785663 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786864 + }, + { + "status": 0, + "executed": 1692787164 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787765 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788666 + }, + { + "status": 0, + "executed": 1692788966 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789566, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae10.111 ingressOctets=23773476461688123,egressOctets=34052802933355159,ingressErrors=0,egressErrors=0,ingressOctetsv6=18233209029779229,egressOctetsv6=29042088436732375,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae10.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d8ace8c7-888c-4548-b310-afb88618e0d3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.112 610", + "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, + "duration": 0.45845906, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae10.112 ingressOctets=537197850,egressOctets=568157074,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae10.112", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "11bc3f3c-c224-400a-b127-bcc8517e6c10", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.333 622", + "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, + "duration": 0.514367843, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786302 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae10.333 ingressOctets=2306244198,egressOctets=6441324430,ingressErrors=0,egressErrors=0,ingressOctetsv6=690066683,egressOctetsv6=593451930,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae10.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a6bbb9e9-f9b5-45d8-8a03-02abcbe4bfd3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.354 612", + "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, + "duration": 0.668868483, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae10.354 ingressOctets=8767755188,egressOctets=15683033909,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae10.354", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5051e4c9-21b5-4ea3-9ed1-4af04a87b1b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae10.420 720", + "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, + "duration": 0.455223599, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787434 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788035 + }, + { + "status": 0, + "executed": 1692788335 + }, + { + "status": 0, + "executed": 1692788635 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789535, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae10.420 ingressOctets=26177685048,egressOctets=6205101575,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae10.420", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4f318c88-5b9c-4caa-872e-3d1b7c413b9d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789536 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11 578", + "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, + "duration": 0.568793334, + "executed": 1692789630, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786628 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789630 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11 ingressOctets=11778064099428637,egressOctets=13608215752054682,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789630, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e1dbb6f0-ae0e-4a7e-b89e-ff894a53011f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.100 634", + "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, + "duration": 0.511154637, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784548 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.100 ingressOctets=6485004741813307,egressOctets=11067791917893614,ingressErrors=0,egressErrors=0,ingressOctetsv6=1715634326206660,egressOctetsv6=1974142807749427,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7751be11-d0f3-4696-9f59-385616f4c94c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.110 733", + "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, + "duration": 0.437385424, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.110 ingressOctets=7976232,egressOctets=97343659,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 7438, + "occurrences_watermark": 7438, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.110", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ecc99088-2d33-4455-83ba-1ecc5056aea6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3349, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.111 920", + "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, + "duration": 0.447319671, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784555 + }, + { + "status": 0, + "executed": 1692784855 + }, + { + "status": 0, + "executed": 1692785155 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786356 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.111 ingressOctets=5279452931535644,egressOctets=2400727551858663,ingressErrors=0,egressErrors=0,ingressOctetsv6=1060496407137655,egressOctetsv6=1821951153975324,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d8c721c8-2fcd-4cff-aba0-8a06b6de0178", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.1501 761", + "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, + "duration": 0.447930043, + "executed": 1692789654, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785151 + }, + { + "status": 0, + "executed": 1692785451 + }, + { + "status": 0, + "executed": 1692785751 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786352 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787252 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787853 + }, + { + "status": 0, + "executed": 1692788153 + }, + { + "status": 0, + "executed": 1692788453 + }, + { + "status": 0, + "executed": 1692788753 + }, + { + "status": 0, + "executed": 1692789054 + }, + { + "status": 0, + "executed": 1692789354 + }, + { + "status": 0, + "executed": 1692789654 + } + ], + "issued": 1692789654, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.1501 ingressOctets=74589459606,egressOctets=140940074268,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789654, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.1501", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a43118c6-aaea-4aa1-9ee1-b22060a9cd00", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789655 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.191 729", + "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, + "duration": 0.49278599, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.191 ingressOctets=0,egressOctets=296940988,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 16658, + "occurrences_watermark": 16658, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.191", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e5cb0714-91a2-4d0f-b765-b719edf03563", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3003 692", + "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, + "duration": 0.468689799, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786075 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786676 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.3003 ingressOctets=121554906,egressOctets=656486285,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.3003", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f71a9301-2674-46e4-a668-5b02e8abf352", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3901 924", + "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, + "duration": 0.501355752, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784555 + }, + { + "status": 0, + "executed": 1692784855 + }, + { + "status": 0, + "executed": 1692785155 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786356 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.3901 ingressOctets=7942949416665,egressOctets=1185789396270,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.3901", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c16233f1-0547-4287-8968-5ff9f0838689", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3903 930", + "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, + "duration": 0.438810646, + "executed": 1692789681, + "history": [ + { + "status": 0, + "executed": 1692783678 + }, + { + "status": 0, + "executed": 1692783978 + }, + { + "status": 0, + "executed": 1692784278 + }, + { + "status": 0, + "executed": 1692784579 + }, + { + "status": 0, + "executed": 1692784879 + }, + { + "status": 0, + "executed": 1692785179 + }, + { + "status": 0, + "executed": 1692785479 + }, + { + "status": 0, + "executed": 1692785779 + }, + { + "status": 0, + "executed": 1692786079 + }, + { + "status": 0, + "executed": 1692786380 + }, + { + "status": 0, + "executed": 1692786680 + }, + { + "status": 0, + "executed": 1692786980 + }, + { + "status": 0, + "executed": 1692787280 + }, + { + "status": 0, + "executed": 1692787580 + }, + { + "status": 0, + "executed": 1692787880 + }, + { + "status": 0, + "executed": 1692788180 + }, + { + "status": 0, + "executed": 1692788481 + }, + { + "status": 0, + "executed": 1692788781 + }, + { + "status": 0, + "executed": 1692789081 + }, + { + "status": 0, + "executed": 1692789381 + }, + { + "status": 0, + "executed": 1692789681 + } + ], + "issued": 1692789681, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.3903 ingressOctets=2565648924,egressOctets=1134657487,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789681, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.3903", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f26102b7-36bd-4c3d-8993-e5c7a64b06af", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789682 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3907 940", + "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, + "duration": 0.475565118, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784576 + }, + { + "status": 0, + "executed": 1692784876 + }, + { + "status": 0, + "executed": 1692785176 + }, + { + "status": 0, + "executed": 1692785476 + }, + { + "status": 0, + "executed": 1692785776 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786977 + }, + { + "status": 0, + "executed": 1692787277 + }, + { + "status": 0, + "executed": 1692787578 + }, + { + "status": 0, + "executed": 1692787878 + }, + { + "status": 0, + "executed": 1692788178 + }, + { + "status": 0, + "executed": 1692788478 + }, + { + "status": 0, + "executed": 1692788779 + }, + { + "status": 0, + "executed": 1692789079 + }, + { + "status": 0, + "executed": 1692789379 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.3907 ingressOctets=2080868465501,egressOctets=413542814697,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.3907", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5fdbbf65-e45d-4b7e-9fc0-c695a8d3da73", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3908 951", + "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, + "duration": 0.468160453, + "executed": 1692789656, + "history": [ + { + "status": 0, + "executed": 1692783651 + }, + { + "status": 0, + "executed": 1692783951 + }, + { + "status": 0, + "executed": 1692784251 + }, + { + "status": 0, + "executed": 1692784551 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785152 + }, + { + "status": 0, + "executed": 1692785452 + }, + { + "status": 0, + "executed": 1692785753 + }, + { + "status": 0, + "executed": 1692786053 + }, + { + "status": 0, + "executed": 1692786353 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786953 + }, + { + "status": 0, + "executed": 1692787254 + }, + { + "status": 0, + "executed": 1692787554 + }, + { + "status": 0, + "executed": 1692787854 + }, + { + "status": 0, + "executed": 1692788154 + }, + { + "status": 0, + "executed": 1692788455 + }, + { + "status": 0, + "executed": 1692788755 + }, + { + "status": 0, + "executed": 1692789055 + }, + { + "status": 0, + "executed": 1692789356 + }, + { + "status": 0, + "executed": 1692789656 + } + ], + "issued": 1692789655, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.3908 ingressOctets=1971805051221,egressOctets=2373071662206,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789656, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.3908", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "99dd2497-98a2-4911-931d-62957dfe3355", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789656 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3911 960", + "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, + "duration": 0.426051666, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789531, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.3911 ingressOctets=1364018786701,egressOctets=93151556259,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.3911", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c5bfe0ef-1fd3-41e2-8993-c50a76007857", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3913 964", + "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, + "duration": 0.421227187, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783579 + }, + { + "status": 0, + "executed": 1692783879 + }, + { + "status": 0, + "executed": 1692784179 + }, + { + "status": 0, + "executed": 1692784479 + }, + { + "status": 0, + "executed": 1692784779 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785980 + }, + { + "status": 0, + "executed": 1692786280 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787481 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788082 + }, + { + "status": 0, + "executed": 1692788382 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789283 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.3913 ingressOctets=4300760253,egressOctets=190444617151,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.3913", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "32ab0db2-3221-479a-9e43-dd523d34c03e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3915 742", + "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, + "duration": 0.438117337, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786075 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786676 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.3915 ingressOctets=242521310,egressOctets=1111038175,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.3915", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4c8edbbf-6b63-4912-b194-eedc66b1da6f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3917 701", + "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, + "duration": 0.398457954, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786591 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.3917 ingressOctets=55482367,egressOctets=480202015,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.3917", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a43d8078-8c4c-4495-8815-3e23888a167e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.3918 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, + "duration": 0.390089918, + "executed": 1692789582, + "history": [ + { + "status": 0, + "executed": 1692783578 + }, + { + "status": 0, + "executed": 1692783878 + }, + { + "status": 0, + "executed": 1692784178 + }, + { + "status": 0, + "executed": 1692784478 + }, + { + "status": 0, + "executed": 1692784778 + }, + { + "status": 0, + "executed": 1692785079 + }, + { + "status": 0, + "executed": 1692785379 + }, + { + "status": 0, + "executed": 1692785679 + }, + { + "status": 0, + "executed": 1692785979 + }, + { + "status": 0, + "executed": 1692786279 + }, + { + "status": 0, + "executed": 1692786580 + }, + { + "status": 0, + "executed": 1692786880 + }, + { + "status": 0, + "executed": 1692787180 + }, + { + "status": 0, + "executed": 1692787480 + }, + { + "status": 0, + "executed": 1692787781 + }, + { + "status": 0, + "executed": 1692788081 + }, + { + "status": 0, + "executed": 1692788381 + }, + { + "status": 0, + "executed": 1692788682 + }, + { + "status": 0, + "executed": 1692788982 + }, + { + "status": 0, + "executed": 1692789282 + }, + { + "status": 0, + "executed": 1692789582 + } + ], + "issued": 1692789582, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.3918 ingressOctets=1661887428,egressOctets=1659997864,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789582, + "occurrences": 28603, + "occurrences_watermark": 28603, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.3918", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d8f40f89-a609-4177-bbd9-295945b8f67e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789583 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae11.947 931", + "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, + "duration": 0.479870681, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae11.947 ingressOctets=164824314705,egressOctets=135302325373533,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae11.947", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d31ee00d-71c5-4a97-8cbf-10028832f416", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae12 579", + "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, + "duration": 0.485172848, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae12 ingressOctets=874845997376287,egressOctets=3099441720560199,ingressErrors=11,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "98e71b12-f64c-4459-84ed-a8bc6ae0bb01", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae12.111 734", + "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, + "duration": 0.432968355, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786408 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787307 + }, + { + "status": 0, + "executed": 1692787607 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788808 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae12.111 ingressOctets=868464442171748,egressOctets=3077383046228373,ingressErrors=0,egressErrors=0,ingressOctetsv6=334890037811947,egressOctetsv6=343638715557585,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae12.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "04180cba-e33d-4c12-9bdd-356d91f24cc7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae12.20 731", + "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, + "duration": 0.408469615, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae12.20 ingressOctets=125568021,egressOctets=1059254300,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae12.20", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4172a43e-d85f-4f1b-b3f4-306172c015ad", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae12.320 738", + "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, + "duration": 0.448105077, + "executed": 1692789426, + "history": [ + { + "status": 0, + "executed": 1692783422 + }, + { + "status": 0, + "executed": 1692783722 + }, + { + "status": 0, + "executed": 1692784022 + }, + { + "status": 0, + "executed": 1692784322 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785823 + }, + { + "status": 0, + "executed": 1692786123 + }, + { + "status": 0, + "executed": 1692786424 + }, + { + "status": 0, + "executed": 1692786724 + }, + { + "status": 0, + "executed": 1692787024 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787925 + }, + { + "status": 0, + "executed": 1692788225 + }, + { + "status": 0, + "executed": 1692788525 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789126 + }, + { + "status": 0, + "executed": 1692789426 + } + ], + "issued": 1692789426, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae12.320 ingressOctets=426217797519,egressOctets=5557395618929,ingressErrors=0,egressErrors=0,ingressOctetsv6=46663577648,egressOctetsv6=129102133578,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789426, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae12.320", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "136322d1-230e-49fc-b785-e1095717d589", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae12.334 736", + "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, + "duration": 0.433592964, + "executed": 1692789464, + "history": [ + { + "status": 0, + "executed": 1692783458 + }, + { + "status": 0, + "executed": 1692783758 + }, + { + "status": 0, + "executed": 1692784059 + }, + { + "status": 0, + "executed": 1692784359 + }, + { + "status": 0, + "executed": 1692784659 + }, + { + "status": 0, + "executed": 1692784960 + }, + { + "status": 0, + "executed": 1692785260 + }, + { + "status": 0, + "executed": 1692785561 + }, + { + "status": 0, + "executed": 1692785861 + }, + { + "status": 0, + "executed": 1692786161 + }, + { + "status": 0, + "executed": 1692786462 + }, + { + "status": 0, + "executed": 1692786762 + }, + { + "status": 0, + "executed": 1692787062 + }, + { + "status": 0, + "executed": 1692787362 + }, + { + "status": 0, + "executed": 1692787663 + }, + { + "status": 0, + "executed": 1692787965 + }, + { + "status": 0, + "executed": 1692788263 + }, + { + "status": 0, + "executed": 1692788563 + }, + { + "status": 0, + "executed": 1692788864 + }, + { + "status": 0, + "executed": 1692789164 + }, + { + "status": 0, + "executed": 1692789464 + } + ], + "issued": 1692789464, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae12.334 ingressOctets=5954186683683,egressOctets=16515501029494,ingressErrors=0,egressErrors=0,ingressOctetsv6=60519970897,egressOctetsv6=50613327998,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789464, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae12.334", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2479fda6-e29f-4ce6-9a56-1c537f452ef7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789465 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae2 566", + "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, + "duration": 0.499030721, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae2 ingressOctets=9166225796777380,egressOctets=6229378772410484,ingressErrors=987,egressErrors=0,ingressDiscards=0,egressDiscards=348730\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34830, + "occurrences_watermark": 34830, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3b7a995f-9587-449f-b085-39cfc128cac5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ae2.0 635", + "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, + "duration": 0.484508653, + "executed": 1692789654, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785151 + }, + { + "status": 0, + "executed": 1692785451 + }, + { + "status": 0, + "executed": 1692785751 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786352 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786952 + }, + { + "status": 0, + "executed": 1692787252 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787853 + }, + { + "status": 0, + "executed": 1692788153 + }, + { + "status": 0, + "executed": 1692788453 + }, + { + "status": 0, + "executed": 1692788753 + }, + { + "status": 0, + "executed": 1692789054 + }, + { + "status": 0, + "executed": 1692789354 + }, + { + "status": 0, + "executed": 1692789654 + } + ], + "issued": 1692789654, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ae2.0 ingressOctets=9166226009801988,egressOctets=6229380312437331,ingressErrors=0,egressErrors=0,ingressOctetsv6=36921812573272,egressOctetsv6=143745298025604,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789654, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ae2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cf117253-c8da-4b72-b568-f2cec21521ac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789655 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net dsc.0 605", + "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, + "duration": 1.866968664, + "executed": 1692789518, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784113 + }, + { + "status": 0, + "executed": 1692784413 + }, + { + "status": 0, + "executed": 1692784713 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789518 + } + ], + "issued": 1692789517, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=dsc.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789518, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-dsc.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4c622e0b-f2a6-49f9-9853-2e6e4cb1e0da", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789519 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-0/1/0 1478", + "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, + "duration": 0.406858406, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=et-0/1/0 ingressOctets=23775423324217463,egressOctets=15351229629285204,ingressErrors=46,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-et-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b4506931-c171-449a-a2f4-43548b22d3d7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-0/3/0 1481", + "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, + "duration": 0.451797855, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783851 + }, + { + "status": 0, + "executed": 1692784151 + }, + { + "status": 0, + "executed": 1692784451 + }, + { + "status": 0, + "executed": 1692784751 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787453 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788054 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788654 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789554, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=et-0/3/0 ingressOctets=23790722881001239,egressOctets=15355117875423236,ingressErrors=29982,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-et-0-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a806f597-bf6f-458d-be2a-c10d6cea2935", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789555 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-1/1/0 1491", + "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, + "duration": 0.481935875, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786211 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=et-1/1/0 ingressOctets=874845298224131,egressOctets=3099434581157522,ingressErrors=92,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-et-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fd99ad09-1127-463d-8232-08a46e2c6430", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-1/3/0 1494", + "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, + "duration": 0.49029227, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=et-1/3/0 ingressOctets=11778054243335294,egressOctets=13608180110951551,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-et-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ab6af4a3-7ee8-4c4a-a57f-54ac2d00e7da", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-2/1/0 644", + "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, + "duration": 0.623008806, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=et-2/1/0 ingressOctets=15124595923905957,egressOctets=14577143201828811,ingressErrors=604,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-et-2-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7bd9aadc-a6c3-47f3-900f-db3e16774921", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-2/3/0 649", + "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, + "duration": 0.497100024, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=et-2/3/0 ingressOctets=15129201378856008,egressOctets=14589179062895676,ingressErrors=283,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-et-2-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c0c1df67-9236-4090-82be-65ad576509f3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-3/0/0 656", + "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, + "duration": 0.453982681, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=et-3/0/0 ingressOctets=1227006420071457,egressOctets=1679743567969916,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-et-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7ae2535d-f60a-4c0f-8eed-d622cc1fdd17", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-5/1/0 786", + "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, + "duration": 0.474703493, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=et-5/1/0 ingressOctets=14563382059816944,egressOctets=20224373745145129,ingressErrors=7,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-et-5-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "00bbf208-980a-426e-82c3-8c7a50379876", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net et-5/3/0 804", + "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, + "duration": 0.495724389, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=et-5/3/0 ingressOctets=14573207186803209,egressOctets=20230998069460250,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-et-5-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3d1af38c-7f21-47a1-827c-db803e202d65", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/0 661", + "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, + "duration": 0.421785659, + "executed": 1692789705, + "history": [ + { + "status": 0, + "executed": 1692783701 + }, + { + "status": 0, + "executed": 1692784001 + }, + { + "status": 0, + "executed": 1692784301 + }, + { + "status": 0, + "executed": 1692784602 + }, + { + "status": 0, + "executed": 1692784902 + }, + { + "status": 0, + "executed": 1692785202 + }, + { + "status": 0, + "executed": 1692785502 + }, + { + "status": 0, + "executed": 1692785802 + }, + { + "status": 0, + "executed": 1692786102 + }, + { + "status": 0, + "executed": 1692786403 + }, + { + "status": 0, + "executed": 1692786703 + }, + { + "status": 0, + "executed": 1692787003 + }, + { + "status": 0, + "executed": 1692787303 + }, + { + "status": 0, + "executed": 1692787603 + }, + { + "status": 0, + "executed": 1692787904 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788805 + }, + { + "status": 0, + "executed": 1692789105 + }, + { + "status": 0, + "executed": 1692789405 + }, + { + "status": 0, + "executed": 1692789705 + } + ], + "issued": 1692789705, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/0 ingressOctets=21214953699,egressOctets=5029434409,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789705, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a229abae-9a46-4ea4-92e8-4fa3673000b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789706 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/0.23 695", + "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, + "duration": 0.416179955, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/0.23 ingressOctets=835723808,egressOctets=252285870,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-0.23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9d0aa4a7-940f-49f1-9f4e-8fde545cdc38", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/0.24 696", + "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, + "duration": 0.421413174, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783595 + }, + { + "status": 0, + "executed": 1692783895 + }, + { + "status": 0, + "executed": 1692784195 + }, + { + "status": 0, + "executed": 1692784495 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787197 + }, + { + "status": 0, + "executed": 1692787497 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788098 + }, + { + "status": 0, + "executed": 1692788398 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789299 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789599, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/0.24 ingressOctets=835724896,egressOctets=653714745,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-0.24", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "777ececd-d6a6-4dc0-881f-a3517eff1718", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789600 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/0.250 678", + "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, + "duration": 0.42280777, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/0.250 ingressOctets=19533625789,egressOctets=3757272496,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 34836, + "occurrences_watermark": 34836, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-0.250", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9f6d3dff-fee5-4580-a8c9-7de6563fe8dc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/1 662", + "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, + "duration": 0.455832377, + "executed": 1692789498, + "history": [ + { + "status": 0, + "executed": 1692783493 + }, + { + "status": 0, + "executed": 1692783793 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784994 + }, + { + "status": 0, + "executed": 1692785294 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787096 + }, + { + "status": 0, + "executed": 1692787397 + }, + { + "status": 0, + "executed": 1692787697 + }, + { + "status": 0, + "executed": 1692787998 + }, + { + "status": 0, + "executed": 1692788298 + }, + { + "status": 0, + "executed": 1692788598 + }, + { + "status": 0, + "executed": 1692788898 + }, + { + "status": 0, + "executed": 1692789199 + }, + { + "status": 0, + "executed": 1692789498 + } + ], + "issued": 1692789498, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789498, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a461f58a-2cd0-46fb-8062-5dfcd1c17b27", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789499 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/2 663", + "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, + "duration": 0.45817335, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f71f2987-626c-4697-a97a-a6c718c6b2a1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/3 657", + "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, + "duration": 0.497473522, + "executed": 1692789636, + "history": [ + { + "status": 0, + "executed": 1692783631 + }, + { + "status": 0, + "executed": 1692783931 + }, + { + "status": 0, + "executed": 1692784231 + }, + { + "status": 0, + "executed": 1692784531 + }, + { + "status": 0, + "executed": 1692784832 + }, + { + "status": 0, + "executed": 1692785132 + }, + { + "status": 0, + "executed": 1692785432 + }, + { + "status": 0, + "executed": 1692785733 + }, + { + "status": 0, + "executed": 1692786033 + }, + { + "status": 0, + "executed": 1692786333 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786933 + }, + { + "status": 0, + "executed": 1692787233 + }, + { + "status": 0, + "executed": 1692787534 + }, + { + "status": 0, + "executed": 1692787834 + }, + { + "status": 0, + "executed": 1692788134 + }, + { + "status": 0, + "executed": 1692788435 + }, + { + "status": 0, + "executed": 1692788735 + }, + { + "status": 0, + "executed": 1692789035 + }, + { + "status": 0, + "executed": 1692789336 + }, + { + "status": 0, + "executed": 1692789636 + } + ], + "issued": 1692789635, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789636, + "occurrences": 34828, + "occurrences_watermark": 34828, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bc3e15e7-7179-477b-806c-5b67737673f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789636 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/4 658", + "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, + "duration": 0.442386758, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789705, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d11ac825-f55e-4106-8ff9-a62def29785d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789706 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/5 659", + "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, + "duration": 0.400055886, + "executed": 1692789699, + "history": [ + { + "status": 0, + "executed": 1692783696 + }, + { + "status": 0, + "executed": 1692783996 + }, + { + "status": 0, + "executed": 1692784296 + }, + { + "status": 0, + "executed": 1692784597 + }, + { + "status": 0, + "executed": 1692784897 + }, + { + "status": 0, + "executed": 1692785197 + }, + { + "status": 0, + "executed": 1692785497 + }, + { + "status": 0, + "executed": 1692785797 + }, + { + "status": 0, + "executed": 1692786097 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786698 + }, + { + "status": 0, + "executed": 1692786998 + }, + { + "status": 0, + "executed": 1692787298 + }, + { + "status": 0, + "executed": 1692787598 + }, + { + "status": 0, + "executed": 1692787898 + }, + { + "status": 0, + "executed": 1692788198 + }, + { + "status": 0, + "executed": 1692788499 + }, + { + "status": 0, + "executed": 1692788799 + }, + { + "status": 0, + "executed": 1692789099 + }, + { + "status": 0, + "executed": 1692789399 + }, + { + "status": 0, + "executed": 1692789699 + } + ], + "issued": 1692789699, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/5 ingressOctets=609244108,egressOctets=240736551278,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789699, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "60e73643-92bd-4231-9403-ea0802da70e8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789700 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/6 660", + "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, + "duration": 0.408076164, + "executed": 1692789664, + "history": [ + { + "status": 0, + "executed": 1692783660 + }, + { + "status": 0, + "executed": 1692783960 + }, + { + "status": 0, + "executed": 1692784260 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785761 + }, + { + "status": 0, + "executed": 1692786061 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786662 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787262 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788463 + }, + { + "status": 0, + "executed": 1692788763 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789364 + }, + { + "status": 0, + "executed": 1692789664 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789664, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "15eeb3a9-d3db-4793-a4fc-98549f6a98cd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789664 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/7 664", + "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, + "duration": 0.56342908, + "executed": 1692789624, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784518 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786020 + }, + { + "status": 0, + "executed": 1692786320 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788423 + }, + { + "status": 0, + "executed": 1692788723 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789324 + }, + { + "status": 0, + "executed": 1692789624 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789624, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "93f05604-c9ee-4abd-8fa6-d4333e345ad6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789624 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/8 665", + "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, + "duration": 0.505717212, + "executed": 1692789628, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788427 + }, + { + "status": 0, + "executed": 1692788727 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789328 + }, + { + "status": 0, + "executed": 1692789628 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/8 ingressOctets=345464451,egressOctets=334810500,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789628, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "777a185d-c5ac-411c-900e-d544efac1c6d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/2/9 666", + "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, + "duration": 0.402104373, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783663 + }, + { + "status": 0, + "executed": 1692783963 + }, + { + "status": 0, + "executed": 1692784263 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785764 + }, + { + "status": 0, + "executed": 1692786064 + }, + { + "status": 0, + "executed": 1692786364 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787265 + }, + { + "status": 0, + "executed": 1692787565 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788466 + }, + { + "status": 0, + "executed": 1692788766 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789367 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "662d632a-8549-4f9e-9a6e-d8676890dead", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/0 672", + "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, + "duration": 0.4354582, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ccd0f271-3a3f-4496-b088-113651ce5f59", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/1 673", + "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, + "duration": 0.469864417, + "executed": 1692789540, + "history": [ + { + "status": 0, + "executed": 1692783536 + }, + { + "status": 0, + "executed": 1692783837 + }, + { + "status": 0, + "executed": 1692784137 + }, + { + "status": 0, + "executed": 1692784437 + }, + { + "status": 0, + "executed": 1692784737 + }, + { + "status": 0, + "executed": 1692785037 + }, + { + "status": 0, + "executed": 1692785337 + }, + { + "status": 0, + "executed": 1692785637 + }, + { + "status": 0, + "executed": 1692785937 + }, + { + "status": 0, + "executed": 1692786237 + }, + { + "status": 0, + "executed": 1692786538 + }, + { + "status": 0, + "executed": 1692786838 + }, + { + "status": 0, + "executed": 1692787138 + }, + { + "status": 0, + "executed": 1692787439 + }, + { + "status": 0, + "executed": 1692787739 + }, + { + "status": 0, + "executed": 1692788040 + }, + { + "status": 0, + "executed": 1692788340 + }, + { + "status": 0, + "executed": 1692788640 + }, + { + "status": 0, + "executed": 1692788940 + }, + { + "status": 0, + "executed": 1692789240 + }, + { + "status": 0, + "executed": 1692789540 + } + ], + "issued": 1692789540, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/1 ingressOctets=1688887812,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789540, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e976a1b6-641d-4640-9e4d-a7004de3bc5f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789541 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/2 674", + "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, + "duration": 0.453086839, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/2 ingressOctets=1128628859,egressOctets=1149047786,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fdd76346-c1a8-4279-884a-597d6cfd4832", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789504 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/2.0 848", + "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, + "duration": 0.490671672, + "executed": 1692789645, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785741 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786341 + }, + { + "status": 0, + "executed": 1692786642 + }, + { + "status": 0, + "executed": 1692786942 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787843 + }, + { + "status": 0, + "executed": 1692788143 + }, + { + "status": 0, + "executed": 1692788444 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789044 + }, + { + "status": 0, + "executed": 1692789345 + }, + { + "status": 0, + "executed": 1692789645 + } + ], + "issued": 1692789644, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/2.0 ingressOctets=1128592321,egressOctets=1200962383,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789645, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a0b1957b-8d52-4e27-a99f-1d8d9e031ae1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789645 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/3 667", + "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, + "duration": 0.595108577, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/3 ingressOctets=2097202010998,egressOctets=178278070105,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3e531112-06f3-4e38-b78a-586f9269211a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/4 668", + "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, + "duration": 0.472087656, + "executed": 1692789688, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783985 + }, + { + "status": 0, + "executed": 1692784285 + }, + { + "status": 0, + "executed": 1692784586 + }, + { + "status": 0, + "executed": 1692784886 + }, + { + "status": 0, + "executed": 1692785186 + }, + { + "status": 0, + "executed": 1692785486 + }, + { + "status": 0, + "executed": 1692785786 + }, + { + "status": 0, + "executed": 1692786087 + }, + { + "status": 0, + "executed": 1692786386 + }, + { + "status": 0, + "executed": 1692786687 + }, + { + "status": 0, + "executed": 1692786987 + }, + { + "status": 0, + "executed": 1692787287 + }, + { + "status": 0, + "executed": 1692787587 + }, + { + "status": 0, + "executed": 1692787887 + }, + { + "status": 0, + "executed": 1692788187 + }, + { + "status": 0, + "executed": 1692788488 + }, + { + "status": 0, + "executed": 1692788788 + }, + { + "status": 0, + "executed": 1692789088 + }, + { + "status": 0, + "executed": 1692789388 + }, + { + "status": 0, + "executed": 1692789688 + } + ], + "issued": 1692789688, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789688, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2220d86b-f865-4539-a520-348aba1458b1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789689 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/5 669", + "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, + "duration": 0.58577871, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786244 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "af50736e-0653-4c00-9c89-097266a28cc0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/6 670", + "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, + "duration": 0.805242458, + "executed": 1692789618, + "history": [ + { + "status": 0, + "executed": 1692783613 + }, + { + "status": 0, + "executed": 1692783913 + }, + { + "status": 0, + "executed": 1692784213 + }, + { + "status": 0, + "executed": 1692784513 + }, + { + "status": 0, + "executed": 1692784813 + }, + { + "status": 0, + "executed": 1692785113 + }, + { + "status": 0, + "executed": 1692785413 + }, + { + "status": 0, + "executed": 1692785713 + }, + { + "status": 0, + "executed": 1692786014 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786615 + }, + { + "status": 0, + "executed": 1692786915 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787816 + }, + { + "status": 0, + "executed": 1692788117 + }, + { + "status": 0, + "executed": 1692788417 + }, + { + "status": 0, + "executed": 1692788717 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789318 + }, + { + "status": 0, + "executed": 1692789618 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789618, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dabf41f6-68da-4a5a-ad79-a8d4140796c8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789619 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/7 671", + "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, + "duration": 0.44173475, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784127 + }, + { + "status": 0, + "executed": 1692784427 + }, + { + "status": 0, + "executed": 1692784727 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785630 + }, + { + "status": 0, + "executed": 1692785929 + }, + { + "status": 0, + "executed": 1692786230 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786830 + }, + { + "status": 0, + "executed": 1692787130 + }, + { + "status": 0, + "executed": 1692787430 + }, + { + "status": 0, + "executed": 1692787731 + }, + { + "status": 0, + "executed": 1692788031 + }, + { + "status": 0, + "executed": 1692788331 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788932 + }, + { + "status": 0, + "executed": 1692789232 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789531, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 34829, + "occurrences_watermark": 34829, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "39d14c94-402f-4522-ae19-0f13b3d48d7c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/8 675", + "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, + "duration": 0.434766862, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/8 ingressOctets=0,egressOctets=360040632,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "794715f1-129f-49e2-a7e0-5d43085d4ea6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net ge-3/3/9 676", + "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, + "duration": 0.446166629, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783603 + }, + { + "status": 0, + "executed": 1692783903 + }, + { + "status": 0, + "executed": 1692784203 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786605 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=ge-3/3/9 ingressOctets=1945693215,egressOctets=584231609,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-ge-3-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "02826a07-5c39-4645-8b77-db3ba6f97d0c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net irb.250 853", + "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, + "duration": 0.388079874, + "executed": 1692789651, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784847 + }, + { + "status": 0, + "executed": 1692785147 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785748 + }, + { + "status": 0, + "executed": 1692786048 + }, + { + "status": 0, + "executed": 1692786348 + }, + { + "status": 0, + "executed": 1692786649 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787249 + }, + { + "status": 0, + "executed": 1692787549 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788150 + }, + { + "status": 0, + "executed": 1692788450 + }, + { + "status": 0, + "executed": 1692788750 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789351 + }, + { + "status": 0, + "executed": 1692789651 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=irb.250 ingressOctets=15106620693,egressOctets=2723343666,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789651, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-irb.250", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d48e6550-fb0c-4ba7-baac-7cd8eadab2a2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net irb.999 835", + "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, + "duration": 0.423807132, + "executed": 1692789654, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785150 + }, + { + "status": 0, + "executed": 1692785451 + }, + { + "status": 0, + "executed": 1692785751 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786952 + }, + { + "status": 0, + "executed": 1692787252 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787853 + }, + { + "status": 0, + "executed": 1692788153 + }, + { + "status": 0, + "executed": 1692788453 + }, + { + "status": 0, + "executed": 1692788753 + }, + { + "status": 0, + "executed": 1692789054 + }, + { + "status": 0, + "executed": 1692789354 + }, + { + "status": 0, + "executed": 1692789654 + } + ], + "issued": 1692789654, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=irb.999 ingressOctets=1908196363,egressOctets=224796113,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789654, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-irb.999", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b0bcc0d8-b7af-480b-9ca9-90082a516475", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789655 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net lt-2/1/0 794", + "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, + "duration": 0.445470169, + "executed": 1692789569, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785365 + }, + { + "status": 0, + "executed": 1692785665 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786566 + }, + { + "status": 0, + "executed": 1692786866 + }, + { + "status": 0, + "executed": 1692787166 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787767 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788668 + }, + { + "status": 0, + "executed": 1692788968 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789569 + } + ], + "issued": 1692789568, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=lt-2/1/0 ingressOctets=485034540916,egressOctets=489624654900,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789569, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-lt-2-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cc99b5a1-bc81-4a61-9aa4-d710ff10b096", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789569 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net lt-2/1/0.16 797", + "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, + "duration": 0.487724073, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=lt-2/1/0.16 ingressOctets=208351908,egressOctets=489361556414,ingressErrors=0,egressErrors=0,ingressOctetsv6=522816,egressOctetsv6=2707354438,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-lt-2-1-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fd2e879d-5421-4fcd-aedf-0d6a3a953297", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net lt-2/1/0.61 798", + "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, + "duration": 0.446906701, + "executed": 1692789585, + "history": [ + { + "status": 0, + "executed": 1692783581 + }, + { + "status": 0, + "executed": 1692783881 + }, + { + "status": 0, + "executed": 1692784181 + }, + { + "status": 0, + "executed": 1692784481 + }, + { + "status": 0, + "executed": 1692784781 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785982 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786582 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787183 + }, + { + "status": 0, + "executed": 1692787483 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788084 + }, + { + "status": 0, + "executed": 1692788384 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789285 + }, + { + "status": 0, + "executed": 1692789585 + } + ], + "issued": 1692789585, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=lt-2/1/0.61 ingressOctets=484826559491,egressOctets=210922640,ingressErrors=0,egressErrors=0,ingressOctetsv6=50653692933,egressOctetsv6=1314798,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789585, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-lt-2-1-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8baee944-b3fc-495c-b866-369475516d1b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789586 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/0 556", + "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, + "duration": 0.480947949, + "executed": 1692789665, + "history": [ + { + "status": 0, + "executed": 1692783661 + }, + { + "status": 0, + "executed": 1692783961 + }, + { + "status": 0, + "executed": 1692784261 + }, + { + "status": 0, + "executed": 1692784561 + }, + { + "status": 0, + "executed": 1692784861 + }, + { + "status": 0, + "executed": 1692785161 + }, + { + "status": 0, + "executed": 1692785461 + }, + { + "status": 0, + "executed": 1692785762 + }, + { + "status": 0, + "executed": 1692786062 + }, + { + "status": 0, + "executed": 1692786362 + }, + { + "status": 0, + "executed": 1692786663 + }, + { + "status": 0, + "executed": 1692786962 + }, + { + "status": 0, + "executed": 1692787263 + }, + { + "status": 0, + "executed": 1692787563 + }, + { + "status": 0, + "executed": 1692787863 + }, + { + "status": 0, + "executed": 1692788163 + }, + { + "status": 0, + "executed": 1692788464 + }, + { + "status": 0, + "executed": 1692788764 + }, + { + "status": 0, + "executed": 1692789064 + }, + { + "status": 0, + "executed": 1692789365 + }, + { + "status": 0, + "executed": 1692789665 + } + ], + "issued": 1692789664, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-0/0/0 ingressOctets=2322685504552926,egressOctets=1557573611737710,ingressErrors=352,egressErrors=0,ingressDiscards=0,egressDiscards=94710\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789665, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "97257081-e71d-4f95-90c3-05a2c16e8c08", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789665 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/1 557", + "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, + "duration": 0.469951204, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785785 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786686 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787286 + }, + { + "status": 0, + "executed": 1692787586 + }, + { + "status": 0, + "executed": 1692787886 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788787 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789687, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-0/0/1 ingressOctets=2269822476678744,egressOctets=1558300676500878,ingressErrors=235,egressErrors=0,ingressDiscards=0,egressDiscards=66325\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3b59c3ad-9828-49a5-beec-ef5e7c14fdce", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789688 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/2 1476", + "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, + "duration": 0.502271673, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-0/0/2 ingressOctets=0,egressOctets=340127082,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 34830, + "occurrences_watermark": 34830, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-0-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "41d86994-dddd-42d3-b43d-cf1ea4f7d74a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/0/3 1477", + "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, + "duration": 0.47148514, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-0/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-0-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7656e5c6-74fd-4aae-9584-f2f2b6fe6dc3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/2/0 548", + "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, + "duration": 0.466518904, + "executed": 1692789668, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786666 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789668 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-0/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789668, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-0-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "06965ed7-a29f-4c90-873c-5262c596659d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/2/1 549", + "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, + "duration": 0.473444485, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785776 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787277 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-0/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4280bbaf-ace7-4888-9bbd-4996591c4f55", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/2/2 1479", + "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, + "duration": 0.49437325, + "executed": 1692789700, + "history": [ + { + "status": 0, + "executed": 1692783696 + }, + { + "status": 0, + "executed": 1692783996 + }, + { + "status": 0, + "executed": 1692784296 + }, + { + "status": 0, + "executed": 1692784597 + }, + { + "status": 0, + "executed": 1692784897 + }, + { + "status": 0, + "executed": 1692785197 + }, + { + "status": 0, + "executed": 1692785497 + }, + { + "status": 0, + "executed": 1692785797 + }, + { + "status": 0, + "executed": 1692786098 + }, + { + "status": 0, + "executed": 1692786397 + }, + { + "status": 0, + "executed": 1692786698 + }, + { + "status": 0, + "executed": 1692786998 + }, + { + "status": 0, + "executed": 1692787298 + }, + { + "status": 0, + "executed": 1692787598 + }, + { + "status": 0, + "executed": 1692787898 + }, + { + "status": 0, + "executed": 1692788198 + }, + { + "status": 0, + "executed": 1692788499 + }, + { + "status": 0, + "executed": 1692788799 + }, + { + "status": 0, + "executed": 1692789100 + }, + { + "status": 0, + "executed": 1692789400 + }, + { + "status": 0, + "executed": 1692789700 + } + ], + "issued": 1692789699, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-0/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789700, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8bcf0e32-4be6-4ce4-87e5-fa0b81d80a56", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789700 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-0/2/3 1480", + "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, + "duration": 0.516343308, + "executed": 1692789683, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786082 + }, + { + "status": 0, + "executed": 1692786381 + }, + { + "status": 0, + "executed": 1692786682 + }, + { + "status": 0, + "executed": 1692786982 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788483 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789683 + } + ], + "issued": 1692789683, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-0/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789683, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c2d7a159-224e-4d15-ba72-81722edeed31", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789684 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/0 546", + "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, + "duration": 0.470458312, + "executed": 1692789701, + "history": [ + { + "status": 0, + "executed": 1692783697 + }, + { + "status": 0, + "executed": 1692783997 + }, + { + "status": 0, + "executed": 1692784297 + }, + { + "status": 0, + "executed": 1692784598 + }, + { + "status": 0, + "executed": 1692784898 + }, + { + "status": 0, + "executed": 1692785198 + }, + { + "status": 0, + "executed": 1692785498 + }, + { + "status": 0, + "executed": 1692785798 + }, + { + "status": 0, + "executed": 1692786099 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692786999 + }, + { + "status": 0, + "executed": 1692787299 + }, + { + "status": 0, + "executed": 1692787599 + }, + { + "status": 0, + "executed": 1692787899 + }, + { + "status": 0, + "executed": 1692788200 + }, + { + "status": 0, + "executed": 1692788500 + }, + { + "status": 0, + "executed": 1692788800 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789701 + } + ], + "issued": 1692789700, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-1/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789701, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e59a1e3a-d336-40c1-97ad-6e8740764aa2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/1 547", + "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, + "duration": 0.439429011, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-1/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d7b875d4-6995-4ce8-a0cc-5df7476df0da", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/2 1489", + "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, + "duration": 0.42943155, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785776 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787277 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-1/0/2 ingressOctets=42520181950,egressOctets=36302084971,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 34829, + "occurrences_watermark": 34829, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-1-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7157f38a-0502-4e15-9900-816d1c0ca0c3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/2.101 988", + "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, + "duration": 0.452672596, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783558 + }, + { + "status": 0, + "executed": 1692783858 + }, + { + "status": 0, + "executed": 1692784158 + }, + { + "status": 0, + "executed": 1692784458 + }, + { + "status": 0, + "executed": 1692784758 + }, + { + "status": 0, + "executed": 1692785059 + }, + { + "status": 0, + "executed": 1692785359 + }, + { + "status": 0, + "executed": 1692785659 + }, + { + "status": 0, + "executed": 1692785959 + }, + { + "status": 0, + "executed": 1692786260 + }, + { + "status": 0, + "executed": 1692786560 + }, + { + "status": 0, + "executed": 1692786860 + }, + { + "status": 0, + "executed": 1692787160 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787761 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788662 + }, + { + "status": 0, + "executed": 1692788962 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789562, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-1/0/2.101 ingressOctets=42344036822,egressOctets=36000672878,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-1-0-2.101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "21bc956a-fb1f-440c-aab1-7150aeaefbe1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789563 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/0/3 1490", + "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, + "duration": 0.440032844, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-1/0/3 ingressOctets=0,egressOctets=340103079,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-1-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c14ce103-6eee-4c1d-8498-bf3e09d15753", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789570 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/0 837", + "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, + "duration": 0.563656589, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-1/2/0 ingressOctets=0,egressOctets=340107270,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "90027459-ca04-45b9-a82a-70a4dd017b4c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/1 838", + "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, + "duration": 0.459559657, + "executed": 1692789668, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786666 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787867 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789668 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-1/2/1 ingressOctets=2293259285143512,egressOctets=1557679503365127,ingressErrors=182,egressErrors=0,ingressDiscards=0,egressDiscards=94282\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789668, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3bbcc391-2526-452d-9e64-9af99a675c37", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/2 1492", + "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, + "duration": 0.646629142, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-1/2/2 ingressOctets=2280460340861568,egressOctets=1555828070173698,ingressErrors=218,egressErrors=0,ingressDiscards=0,egressDiscards=93413\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-1-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c96d5044-b318-423f-967a-6359408be2b4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-1/2/3 1493", + "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, + "duration": 0.666264217, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-1/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "418da411-4877-487b-a168-2e6ef75d384d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/0/0 640", + "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, + "duration": 0.421967767, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-2/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "80c31959-6036-4086-86c7-712ffa740c64", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/0/1 641", + "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, + "duration": 0.510745942, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783472 + }, + { + "status": 0, + "executed": 1692783772 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786176 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-2/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 34829, + "occurrences_watermark": 34829, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-2-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2924a9ef-1d1a-4221-bc49-5851bce87517", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789480 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/0/2 642", + "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, + "duration": 0.47423158, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783518 + }, + { + "status": 0, + "executed": 1692783818 + }, + { + "status": 0, + "executed": 1692784118 + }, + { + "status": 0, + "executed": 1692784418 + }, + { + "status": 0, + "executed": 1692784718 + }, + { + "status": 0, + "executed": 1692785019 + }, + { + "status": 0, + "executed": 1692785319 + }, + { + "status": 0, + "executed": 1692785619 + }, + { + "status": 0, + "executed": 1692785919 + }, + { + "status": 0, + "executed": 1692786219 + }, + { + "status": 0, + "executed": 1692786520 + }, + { + "status": 0, + "executed": 1692786820 + }, + { + "status": 0, + "executed": 1692787120 + }, + { + "status": 0, + "executed": 1692787421 + }, + { + "status": 0, + "executed": 1692787721 + }, + { + "status": 0, + "executed": 1692788022 + }, + { + "status": 0, + "executed": 1692788322 + }, + { + "status": 0, + "executed": 1692788622 + }, + { + "status": 0, + "executed": 1692788922 + }, + { + "status": 0, + "executed": 1692789222 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-2/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-2-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7d162a35-9929-4bb9-a5f0-110a9e01dd66", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/0/3 643", + "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, + "duration": 0.437874793, + "executed": 1692789541, + "history": [ + { + "status": 0, + "executed": 1692783537 + }, + { + "status": 0, + "executed": 1692783837 + }, + { + "status": 0, + "executed": 1692784137 + }, + { + "status": 0, + "executed": 1692784437 + }, + { + "status": 0, + "executed": 1692784737 + }, + { + "status": 0, + "executed": 1692785038 + }, + { + "status": 0, + "executed": 1692785338 + }, + { + "status": 0, + "executed": 1692785638 + }, + { + "status": 0, + "executed": 1692785938 + }, + { + "status": 0, + "executed": 1692786238 + }, + { + "status": 0, + "executed": 1692786539 + }, + { + "status": 0, + "executed": 1692786839 + }, + { + "status": 0, + "executed": 1692787139 + }, + { + "status": 0, + "executed": 1692787439 + }, + { + "status": 0, + "executed": 1692787740 + }, + { + "status": 0, + "executed": 1692788040 + }, + { + "status": 0, + "executed": 1692788340 + }, + { + "status": 0, + "executed": 1692788641 + }, + { + "status": 0, + "executed": 1692788941 + }, + { + "status": 0, + "executed": 1692789241 + }, + { + "status": 0, + "executed": 1692789541 + } + ], + "issued": 1692789540, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-2/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789541, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-2-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b735e48a-0282-484f-88ee-65325fe24ef1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789541 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/2/0 645", + "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, + "duration": 0.399447888, + "executed": 1692789696, + "history": [ + { + "status": 0, + "executed": 1692783692 + }, + { + "status": 0, + "executed": 1692783993 + }, + { + "status": 0, + "executed": 1692784293 + }, + { + "status": 0, + "executed": 1692784593 + }, + { + "status": 0, + "executed": 1692784893 + }, + { + "status": 0, + "executed": 1692785193 + }, + { + "status": 0, + "executed": 1692785493 + }, + { + "status": 0, + "executed": 1692785794 + }, + { + "status": 0, + "executed": 1692786094 + }, + { + "status": 0, + "executed": 1692786394 + }, + { + "status": 0, + "executed": 1692786694 + }, + { + "status": 0, + "executed": 1692786994 + }, + { + "status": 0, + "executed": 1692787295 + }, + { + "status": 0, + "executed": 1692787595 + }, + { + "status": 0, + "executed": 1692787895 + }, + { + "status": 0, + "executed": 1692788195 + }, + { + "status": 0, + "executed": 1692788495 + }, + { + "status": 0, + "executed": 1692788796 + }, + { + "status": 0, + "executed": 1692789096 + }, + { + "status": 0, + "executed": 1692789396 + }, + { + "status": 0, + "executed": 1692789696 + } + ], + "issued": 1692789695, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-2/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789696, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-2-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4c6c34cf-1b78-4bbf-8b59-f31ea0f816fb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789696 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/2/1 646", + "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, + "duration": 0.4343102, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-2/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-2-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "135435d9-37db-4abd-b13b-d88063315aa4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/2/2 647", + "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, + "duration": 0.444655446, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785784 + }, + { + "status": 0, + "executed": 1692786084 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786685 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787285 + }, + { + "status": 0, + "executed": 1692787585 + }, + { + "status": 0, + "executed": 1692787885 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788786 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789686, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-2/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 34834, + "occurrences_watermark": 34834, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-2-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "80aa7ff2-93e5-4a4a-abe1-c03dd1438ce4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789687 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-2/2/3 648", + "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, + "duration": 0.522729767, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783545 + }, + { + "status": 0, + "executed": 1692783846 + }, + { + "status": 0, + "executed": 1692784146 + }, + { + "status": 0, + "executed": 1692784446 + }, + { + "status": 0, + "executed": 1692784746 + }, + { + "status": 0, + "executed": 1692785046 + }, + { + "status": 0, + "executed": 1692785346 + }, + { + "status": 0, + "executed": 1692785646 + }, + { + "status": 0, + "executed": 1692785946 + }, + { + "status": 0, + "executed": 1692786247 + }, + { + "status": 0, + "executed": 1692786547 + }, + { + "status": 0, + "executed": 1692786847 + }, + { + "status": 0, + "executed": 1692787147 + }, + { + "status": 0, + "executed": 1692787448 + }, + { + "status": 0, + "executed": 1692787748 + }, + { + "status": 0, + "executed": 1692788049 + }, + { + "status": 0, + "executed": 1692788349 + }, + { + "status": 0, + "executed": 1692788649 + }, + { + "status": 0, + "executed": 1692788949 + }, + { + "status": 0, + "executed": 1692789249 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-2/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-2-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "24df75f0-13a3-4e75-8d42-7062bfc13845", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/0/0 780", + "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, + "duration": 0.420722788, + "executed": 1692789707, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786406 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789107 + }, + { + "status": 0, + "executed": 1692789407 + }, + { + "status": 0, + "executed": 1692789707 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-5/0/0 ingressOctets=99079396185,egressOctets=6964511023,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789707, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-5-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e582658-9d3b-4fcd-88cf-dae9c3cd3b3e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/0/1 783", + "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, + "duration": 0.458691208, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-5/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-5-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "52e8b24a-bee7-4c4c-bdbd-98e4deb19660", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/0/2 784", + "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, + "duration": 0.424441841, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-5/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 34833, + "occurrences_watermark": 34833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-5-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bdf4c032-3650-4781-a27e-6677ad2305ed", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/0/3 785", + "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, + "duration": 0.435335034, + "executed": 1692789711, + "history": [ + { + "status": 0, + "executed": 1692783707 + }, + { + "status": 0, + "executed": 1692784008 + }, + { + "status": 0, + "executed": 1692784308 + }, + { + "status": 0, + "executed": 1692784608 + }, + { + "status": 0, + "executed": 1692784908 + }, + { + "status": 0, + "executed": 1692785208 + }, + { + "status": 0, + "executed": 1692785508 + }, + { + "status": 0, + "executed": 1692785809 + }, + { + "status": 0, + "executed": 1692786109 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786710 + }, + { + "status": 0, + "executed": 1692787010 + }, + { + "status": 0, + "executed": 1692787310 + }, + { + "status": 0, + "executed": 1692787610 + }, + { + "status": 0, + "executed": 1692787910 + }, + { + "status": 0, + "executed": 1692788211 + }, + { + "status": 0, + "executed": 1692788511 + }, + { + "status": 0, + "executed": 1692788811 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789711 + } + ], + "issued": 1692789711, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-5/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789711, + "occurrences": 18354, + "occurrences_watermark": 18354, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-5-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7aa71ca7-7f80-4f40-b662-ab653b43e8ae", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789712 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/2/0 803", + "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, + "duration": 0.418836185, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-5/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-5-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "73364074-6d1b-4872-8949-e241d9d99a1c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/2/1 787", + "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, + "duration": 0.475019459, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784576 + }, + { + "status": 0, + "executed": 1692784876 + }, + { + "status": 0, + "executed": 1692785176 + }, + { + "status": 0, + "executed": 1692785476 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786077 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786977 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787578 + }, + { + "status": 0, + "executed": 1692787878 + }, + { + "status": 0, + "executed": 1692788178 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788779 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789679, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-5/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-5-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9b2c91a4-e7a1-4cf2-888d-41b71f693119", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/2/2 801", + "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, + "duration": 0.429956412, + "executed": 1692789677, + "history": [ + { + "status": 0, + "executed": 1692783673 + }, + { + "status": 0, + "executed": 1692783973 + }, + { + "status": 0, + "executed": 1692784273 + }, + { + "status": 0, + "executed": 1692784573 + }, + { + "status": 0, + "executed": 1692784873 + }, + { + "status": 0, + "executed": 1692785173 + }, + { + "status": 0, + "executed": 1692785473 + }, + { + "status": 0, + "executed": 1692785774 + }, + { + "status": 0, + "executed": 1692786074 + }, + { + "status": 0, + "executed": 1692786374 + }, + { + "status": 0, + "executed": 1692786675 + }, + { + "status": 0, + "executed": 1692786974 + }, + { + "status": 0, + "executed": 1692787275 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788176 + }, + { + "status": 0, + "executed": 1692788476 + }, + { + "status": 0, + "executed": 1692788776 + }, + { + "status": 0, + "executed": 1692789077 + }, + { + "status": 0, + "executed": 1692789377 + }, + { + "status": 0, + "executed": 1692789677 + } + ], + "issued": 1692789677, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-5/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789677, + "occurrences": 34832, + "occurrences_watermark": 34832, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-5-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "28f0e349-68b1-4761-a2fa-dd27a07c12f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789678 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.ham.de.geant.net xe-5/2/3 802", + "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, + "duration": 0.430190605, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.ham.de.geant.net,interface_name=xe-5/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 34831, + "occurrences_watermark": 34831, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.ham.de.geant.net-xe-5-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.ham.de.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.ham.de.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "12a88f9c-5889-4a1a-8a03-a45d0336eba5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae0 587", + "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, + "duration": 48.458705643, + "executed": 1692789393, + "history": [ + { + "status": 2, + "executed": 1692783388 + }, + { + "status": 2, + "executed": 1692783688 + }, + { + "status": 2, + "executed": 1692783989 + }, + { + "status": 2, + "executed": 1692784289 + }, + { + "status": 2, + "executed": 1692784589 + }, + { + "status": 2, + "executed": 1692784889 + }, + { + "status": 2, + "executed": 1692785190 + }, + { + "status": 2, + "executed": 1692785491 + }, + { + "status": 2, + "executed": 1692785791 + }, + { + "status": 2, + "executed": 1692786091 + }, + { + "status": 2, + "executed": 1692786391 + }, + { + "status": 2, + "executed": 1692786691 + }, + { + "status": 2, + "executed": 1692786991 + }, + { + "status": 2, + "executed": 1692787292 + }, + { + "status": 2, + "executed": 1692787592 + }, + { + "status": 2, + "executed": 1692787892 + }, + { + "status": 2, + "executed": 1692788192 + }, + { + "status": 2, + "executed": 1692788492 + }, + { + "status": 2, + "executed": 1692788793 + }, + { + "status": 2, + "executed": 1692789093 + }, + { + "status": 2, + "executed": 1692789393 + } + ], + "issued": 1692789393, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae0\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34818, + "occurrences_watermark": 34818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fca26caa-008e-4a2d-bdb0-dab861fca178", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789442 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae0.0 621", + "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, + "duration": 48.398164018, + "executed": 1692789400, + "history": [ + { + "status": 2, + "executed": 1692783397 + }, + { + "status": 2, + "executed": 1692783697 + }, + { + "status": 2, + "executed": 1692783997 + }, + { + "status": 2, + "executed": 1692784297 + }, + { + "status": 2, + "executed": 1692784598 + }, + { + "status": 2, + "executed": 1692784898 + }, + { + "status": 2, + "executed": 1692785198 + }, + { + "status": 2, + "executed": 1692785498 + }, + { + "status": 2, + "executed": 1692785798 + }, + { + "status": 2, + "executed": 1692786099 + }, + { + "status": 2, + "executed": 1692786398 + }, + { + "status": 2, + "executed": 1692786699 + }, + { + "status": 2, + "executed": 1692786999 + }, + { + "status": 2, + "executed": 1692787299 + }, + { + "status": 2, + "executed": 1692787599 + }, + { + "status": 2, + "executed": 1692787899 + }, + { + "status": 2, + "executed": 1692788200 + }, + { + "status": 2, + "executed": 1692788500 + }, + { + "status": 2, + "executed": 1692788800 + }, + { + "status": 2, + "executed": 1692789100 + }, + { + "status": 2, + "executed": 1692789400 + } + ], + "issued": 1692789400, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae0.0\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34818, + "occurrences_watermark": 34818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "44870070-cd57-487a-ab53-27c704e701b0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae1 588", + "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, + "duration": 48.312924152, + "executed": 1692789663, + "history": [ + { + "status": 2, + "executed": 1692783659 + }, + { + "status": 2, + "executed": 1692783959 + }, + { + "status": 2, + "executed": 1692784259 + }, + { + "status": 2, + "executed": 1692784560 + }, + { + "status": 2, + "executed": 1692784860 + }, + { + "status": 2, + "executed": 1692785160 + }, + { + "status": 2, + "executed": 1692785460 + }, + { + "status": 2, + "executed": 1692785760 + }, + { + "status": 2, + "executed": 1692786060 + }, + { + "status": 2, + "executed": 1692786360 + }, + { + "status": 2, + "executed": 1692786661 + }, + { + "status": 2, + "executed": 1692786961 + }, + { + "status": 2, + "executed": 1692787261 + }, + { + "status": 2, + "executed": 1692787562 + }, + { + "status": 2, + "executed": 1692787862 + }, + { + "status": 2, + "executed": 1692788162 + }, + { + "status": 2, + "executed": 1692788462 + }, + { + "status": 2, + "executed": 1692788762 + }, + { + "status": 2, + "executed": 1692789063 + }, + { + "status": 2, + "executed": 1692789363 + }, + { + "status": 2, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae1\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b2d98ea4-9a43-4284-b4cd-0d64936f46ff", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789712 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae1.0 622", + "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, + "duration": 48.391987854, + "executed": 1692789379, + "history": [ + { + "status": 2, + "executed": 1692783375 + }, + { + "status": 2, + "executed": 1692783675 + }, + { + "status": 2, + "executed": 1692783975 + }, + { + "status": 2, + "executed": 1692784275 + }, + { + "status": 2, + "executed": 1692784576 + }, + { + "status": 2, + "executed": 1692784876 + }, + { + "status": 2, + "executed": 1692785176 + }, + { + "status": 2, + "executed": 1692785476 + }, + { + "status": 2, + "executed": 1692785776 + }, + { + "status": 2, + "executed": 1692786077 + }, + { + "status": 2, + "executed": 1692786376 + }, + { + "status": 2, + "executed": 1692786677 + }, + { + "status": 2, + "executed": 1692786977 + }, + { + "status": 2, + "executed": 1692787277 + }, + { + "status": 2, + "executed": 1692787578 + }, + { + "status": 2, + "executed": 1692787877 + }, + { + "status": 2, + "executed": 1692788178 + }, + { + "status": 2, + "executed": 1692788478 + }, + { + "status": 2, + "executed": 1692788778 + }, + { + "status": 2, + "executed": 1692789079 + }, + { + "status": 2, + "executed": 1692789379 + } + ], + "issued": 1692789379, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae1.0\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34816, + "occurrences_watermark": 34816, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "12c82b80-ccd9-4f7d-8198-af86166e1bba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789427 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae2 589", + "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, + "duration": 48.463530219, + "executed": 1692789493, + "history": [ + { + "status": 2, + "executed": 1692783489 + }, + { + "status": 2, + "executed": 1692783789 + }, + { + "status": 2, + "executed": 1692784090 + }, + { + "status": 2, + "executed": 1692784390 + }, + { + "status": 2, + "executed": 1692784690 + }, + { + "status": 2, + "executed": 1692784990 + }, + { + "status": 2, + "executed": 1692785290 + }, + { + "status": 2, + "executed": 1692785591 + }, + { + "status": 2, + "executed": 1692785891 + }, + { + "status": 2, + "executed": 1692786191 + }, + { + "status": 2, + "executed": 1692786491 + }, + { + "status": 2, + "executed": 1692786792 + }, + { + "status": 2, + "executed": 1692787092 + }, + { + "status": 2, + "executed": 1692787392 + }, + { + "status": 2, + "executed": 1692787693 + }, + { + "status": 2, + "executed": 1692787993 + }, + { + "status": 2, + "executed": 1692788293 + }, + { + "status": 2, + "executed": 1692788593 + }, + { + "status": 2, + "executed": 1692788894 + }, + { + "status": 2, + "executed": 1692789194 + }, + { + "status": 2, + "executed": 1692789493 + } + ], + "issued": 1692789493, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae2\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34818, + "occurrences_watermark": 34818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "18f05b2b-7a1c-4f2d-8e4d-bc918e29ffaf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789542 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae2.0 623", + "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, + "duration": 48.409833401, + "executed": 1692789387, + "history": [ + { + "status": 2, + "executed": 1692783383 + }, + { + "status": 2, + "executed": 1692783685 + }, + { + "status": 2, + "executed": 1692783983 + }, + { + "status": 2, + "executed": 1692784283 + }, + { + "status": 2, + "executed": 1692784584 + }, + { + "status": 2, + "executed": 1692784884 + }, + { + "status": 2, + "executed": 1692785184 + }, + { + "status": 2, + "executed": 1692785484 + }, + { + "status": 2, + "executed": 1692785784 + }, + { + "status": 2, + "executed": 1692786085 + }, + { + "status": 2, + "executed": 1692786384 + }, + { + "status": 2, + "executed": 1692786685 + }, + { + "status": 2, + "executed": 1692786985 + }, + { + "status": 2, + "executed": 1692787285 + }, + { + "status": 2, + "executed": 1692787585 + }, + { + "status": 2, + "executed": 1692787885 + }, + { + "status": 2, + "executed": 1692788185 + }, + { + "status": 2, + "executed": 1692788486 + }, + { + "status": 2, + "executed": 1692788786 + }, + { + "status": 2, + "executed": 1692789087 + }, + { + "status": 2, + "executed": 1692789387 + } + ], + "issued": 1692789387, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae2.0\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34816, + "occurrences_watermark": 34816, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d8feafba-af4b-47e8-9de8-bc431252194a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31 590", + "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, + "duration": 48.310494679, + "executed": 1692789666, + "history": [ + { + "status": 2, + "executed": 1692783662 + }, + { + "status": 2, + "executed": 1692783962 + }, + { + "status": 2, + "executed": 1692784262 + }, + { + "status": 2, + "executed": 1692784562 + }, + { + "status": 2, + "executed": 1692784862 + }, + { + "status": 2, + "executed": 1692785162 + }, + { + "status": 2, + "executed": 1692785462 + }, + { + "status": 2, + "executed": 1692785763 + }, + { + "status": 2, + "executed": 1692786063 + }, + { + "status": 2, + "executed": 1692786363 + }, + { + "status": 2, + "executed": 1692786664 + }, + { + "status": 2, + "executed": 1692786963 + }, + { + "status": 2, + "executed": 1692787264 + }, + { + "status": 2, + "executed": 1692787564 + }, + { + "status": 2, + "executed": 1692787864 + }, + { + "status": 2, + "executed": 1692788164 + }, + { + "status": 2, + "executed": 1692788465 + }, + { + "status": 2, + "executed": 1692788765 + }, + { + "status": 2, + "executed": 1692789065 + }, + { + "status": 2, + "executed": 1692789366 + }, + { + "status": 2, + "executed": 1692789666 + } + ], + "issued": 1692789665, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0d4b6b61-8772-45b6-a090-df0124f6c34d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789714 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2000 624", + "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, + "duration": 48.449856037, + "executed": 1692789536, + "history": [ + { + "status": 2, + "executed": 1692783533 + }, + { + "status": 2, + "executed": 1692783833 + }, + { + "status": 2, + "executed": 1692784133 + }, + { + "status": 2, + "executed": 1692784433 + }, + { + "status": 2, + "executed": 1692784733 + }, + { + "status": 2, + "executed": 1692785034 + }, + { + "status": 2, + "executed": 1692785334 + }, + { + "status": 2, + "executed": 1692785634 + }, + { + "status": 2, + "executed": 1692785934 + }, + { + "status": 2, + "executed": 1692786235 + }, + { + "status": 2, + "executed": 1692786534 + }, + { + "status": 2, + "executed": 1692786835 + }, + { + "status": 2, + "executed": 1692787135 + }, + { + "status": 2, + "executed": 1692787435 + }, + { + "status": 2, + "executed": 1692787736 + }, + { + "status": 2, + "executed": 1692788036 + }, + { + "status": 2, + "executed": 1692788336 + }, + { + "status": 2, + "executed": 1692788636 + }, + { + "status": 2, + "executed": 1692788937 + }, + { + "status": 2, + "executed": 1692789237 + }, + { + "status": 2, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31.2000\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34817, + "occurrences_watermark": 34817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31.2000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "359cd7e3-c145-4003-a89f-e4777bc82143", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2101 625", + "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, + "duration": 48.396652961, + "executed": 1692789387, + "history": [ + { + "status": 2, + "executed": 1692783383 + }, + { + "status": 2, + "executed": 1692783685 + }, + { + "status": 2, + "executed": 1692783983 + }, + { + "status": 2, + "executed": 1692784283 + }, + { + "status": 2, + "executed": 1692784584 + }, + { + "status": 2, + "executed": 1692784884 + }, + { + "status": 2, + "executed": 1692785184 + }, + { + "status": 2, + "executed": 1692785484 + }, + { + "status": 2, + "executed": 1692785784 + }, + { + "status": 2, + "executed": 1692786085 + }, + { + "status": 2, + "executed": 1692786384 + }, + { + "status": 2, + "executed": 1692786685 + }, + { + "status": 2, + "executed": 1692786985 + }, + { + "status": 2, + "executed": 1692787285 + }, + { + "status": 2, + "executed": 1692787585 + }, + { + "status": 2, + "executed": 1692787885 + }, + { + "status": 2, + "executed": 1692788186 + }, + { + "status": 2, + "executed": 1692788486 + }, + { + "status": 2, + "executed": 1692788786 + }, + { + "status": 2, + "executed": 1692789087 + }, + { + "status": 2, + "executed": 1692789387 + } + ], + "issued": 1692789387, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31.2101\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34818, + "occurrences_watermark": 34818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31.2101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "25157e55-5894-488c-b5e0-731da8d7e8e1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2102 531", + "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, + "duration": 48.332459721, + "executed": 1692789399, + "history": [ + { + "status": 2, + "executed": 1692783396 + }, + { + "status": 2, + "executed": 1692783696 + }, + { + "status": 2, + "executed": 1692783996 + }, + { + "status": 2, + "executed": 1692784296 + }, + { + "status": 2, + "executed": 1692784596 + }, + { + "status": 2, + "executed": 1692784896 + }, + { + "status": 2, + "executed": 1692785196 + }, + { + "status": 2, + "executed": 1692785496 + }, + { + "status": 2, + "executed": 1692785797 + }, + { + "status": 2, + "executed": 1692786097 + }, + { + "status": 2, + "executed": 1692786397 + }, + { + "status": 2, + "executed": 1692786697 + }, + { + "status": 2, + "executed": 1692786997 + }, + { + "status": 2, + "executed": 1692787298 + }, + { + "status": 2, + "executed": 1692787598 + }, + { + "status": 2, + "executed": 1692787898 + }, + { + "status": 2, + "executed": 1692788198 + }, + { + "status": 2, + "executed": 1692788498 + }, + { + "status": 2, + "executed": 1692788799 + }, + { + "status": 2, + "executed": 1692789099 + }, + { + "status": 2, + "executed": 1692789399 + } + ], + "issued": 1692789399, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31.2102\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 28602, + "occurrences_watermark": 28602, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31.2102", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1d6b1359-f00b-4696-9bc1-22b342967c1b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789447 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2103 536", + "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, + "duration": 48.369025405, + "executed": 1692789421, + "history": [ + { + "status": 2, + "executed": 1692783417 + }, + { + "status": 2, + "executed": 1692783717 + }, + { + "status": 2, + "executed": 1692784017 + }, + { + "status": 2, + "executed": 1692784317 + }, + { + "status": 2, + "executed": 1692784618 + }, + { + "status": 2, + "executed": 1692784918 + }, + { + "status": 2, + "executed": 1692785218 + }, + { + "status": 2, + "executed": 1692785518 + }, + { + "status": 2, + "executed": 1692785818 + }, + { + "status": 2, + "executed": 1692786119 + }, + { + "status": 2, + "executed": 1692786419 + }, + { + "status": 2, + "executed": 1692786719 + }, + { + "status": 2, + "executed": 1692787019 + }, + { + "status": 2, + "executed": 1692787320 + }, + { + "status": 2, + "executed": 1692787620 + }, + { + "status": 2, + "executed": 1692787920 + }, + { + "status": 2, + "executed": 1692788220 + }, + { + "status": 2, + "executed": 1692788520 + }, + { + "status": 2, + "executed": 1692788821 + }, + { + "status": 2, + "executed": 1692789121 + }, + { + "status": 2, + "executed": 1692789421 + } + ], + "issued": 1692789421, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31.2103\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 28602, + "occurrences_watermark": 28602, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31.2103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "45e8b004-8775-4935-8b2c-6bca0ea9050c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789470 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2111 626", + "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, + "duration": 48.325899302, + "executed": 1692789585, + "history": [ + { + "status": 2, + "executed": 1692783581 + }, + { + "status": 2, + "executed": 1692783881 + }, + { + "status": 2, + "executed": 1692784181 + }, + { + "status": 2, + "executed": 1692784481 + }, + { + "status": 2, + "executed": 1692784781 + }, + { + "status": 2, + "executed": 1692785081 + }, + { + "status": 2, + "executed": 1692785381 + }, + { + "status": 2, + "executed": 1692785681 + }, + { + "status": 2, + "executed": 1692785982 + }, + { + "status": 2, + "executed": 1692786282 + }, + { + "status": 2, + "executed": 1692786582 + }, + { + "status": 2, + "executed": 1692786882 + }, + { + "status": 2, + "executed": 1692787183 + }, + { + "status": 2, + "executed": 1692787483 + }, + { + "status": 2, + "executed": 1692787783 + }, + { + "status": 2, + "executed": 1692788084 + }, + { + "status": 2, + "executed": 1692788384 + }, + { + "status": 2, + "executed": 1692788684 + }, + { + "status": 2, + "executed": 1692788984 + }, + { + "status": 2, + "executed": 1692789285 + }, + { + "status": 2, + "executed": 1692789585 + } + ], + "issued": 1692789585, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31.2111\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34819, + "occurrences_watermark": 34819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31.2111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9cabfa2e-3e8e-4c64-86ba-c47eae1548a5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789633 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2112 627", + "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, + "duration": 48.420547172, + "executed": 1692789401, + "history": [ + { + "status": 2, + "executed": 1692783397 + }, + { + "status": 2, + "executed": 1692783697 + }, + { + "status": 2, + "executed": 1692783998 + }, + { + "status": 2, + "executed": 1692784298 + }, + { + "status": 2, + "executed": 1692784598 + }, + { + "status": 2, + "executed": 1692784898 + }, + { + "status": 2, + "executed": 1692785198 + }, + { + "status": 2, + "executed": 1692785498 + }, + { + "status": 2, + "executed": 1692785799 + }, + { + "status": 2, + "executed": 1692786099 + }, + { + "status": 2, + "executed": 1692786399 + }, + { + "status": 2, + "executed": 1692786699 + }, + { + "status": 2, + "executed": 1692786999 + }, + { + "status": 2, + "executed": 1692787300 + }, + { + "status": 2, + "executed": 1692787600 + }, + { + "status": 2, + "executed": 1692787900 + }, + { + "status": 2, + "executed": 1692788200 + }, + { + "status": 2, + "executed": 1692788500 + }, + { + "status": 2, + "executed": 1692788801 + }, + { + "status": 2, + "executed": 1692789101 + }, + { + "status": 2, + "executed": 1692789401 + } + ], + "issued": 1692789401, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31.2112\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34818, + "occurrences_watermark": 34818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31.2112", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e237a128-560b-406c-8b0e-b7952a01b057", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2113 628", + "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, + "duration": 48.379077009, + "executed": 1692789387, + "history": [ + { + "status": 2, + "executed": 1692783383 + }, + { + "status": 2, + "executed": 1692783685 + }, + { + "status": 2, + "executed": 1692783983 + }, + { + "status": 2, + "executed": 1692784283 + }, + { + "status": 2, + "executed": 1692784584 + }, + { + "status": 2, + "executed": 1692784884 + }, + { + "status": 2, + "executed": 1692785184 + }, + { + "status": 2, + "executed": 1692785484 + }, + { + "status": 2, + "executed": 1692785784 + }, + { + "status": 2, + "executed": 1692786085 + }, + { + "status": 2, + "executed": 1692786384 + }, + { + "status": 2, + "executed": 1692786685 + }, + { + "status": 2, + "executed": 1692786985 + }, + { + "status": 2, + "executed": 1692787285 + }, + { + "status": 2, + "executed": 1692787585 + }, + { + "status": 2, + "executed": 1692787885 + }, + { + "status": 2, + "executed": 1692788185 + }, + { + "status": 2, + "executed": 1692788486 + }, + { + "status": 2, + "executed": 1692788786 + }, + { + "status": 2, + "executed": 1692789087 + }, + { + "status": 2, + "executed": 1692789387 + } + ], + "issued": 1692789387, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31.2113\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34819, + "occurrences_watermark": 34819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31.2113", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "85910bd2-a414-487f-a1a8-b0861abe8fbe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2114 629", + "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, + "duration": 48.467841461, + "executed": 1692789393, + "history": [ + { + "status": 2, + "executed": 1692783388 + }, + { + "status": 2, + "executed": 1692783688 + }, + { + "status": 2, + "executed": 1692783989 + }, + { + "status": 2, + "executed": 1692784289 + }, + { + "status": 2, + "executed": 1692784589 + }, + { + "status": 2, + "executed": 1692784889 + }, + { + "status": 2, + "executed": 1692785190 + }, + { + "status": 2, + "executed": 1692785491 + }, + { + "status": 2, + "executed": 1692785791 + }, + { + "status": 2, + "executed": 1692786091 + }, + { + "status": 2, + "executed": 1692786391 + }, + { + "status": 2, + "executed": 1692786691 + }, + { + "status": 2, + "executed": 1692786991 + }, + { + "status": 2, + "executed": 1692787292 + }, + { + "status": 2, + "executed": 1692787592 + }, + { + "status": 2, + "executed": 1692787892 + }, + { + "status": 2, + "executed": 1692788192 + }, + { + "status": 2, + "executed": 1692788492 + }, + { + "status": 2, + "executed": 1692788793 + }, + { + "status": 2, + "executed": 1692789093 + }, + { + "status": 2, + "executed": 1692789393 + } + ], + "issued": 1692789393, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31.2114\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34819, + "occurrences_watermark": 34819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31.2114", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1ebee8d0-9847-40d7-bb5e-a0af45a2c6b9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789442 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2121 630", + "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, + "duration": 48.350083209, + "executed": 1692789580, + "history": [ + { + "status": 2, + "executed": 1692783576 + }, + { + "status": 2, + "executed": 1692783876 + }, + { + "status": 2, + "executed": 1692784176 + }, + { + "status": 2, + "executed": 1692784476 + }, + { + "status": 2, + "executed": 1692784776 + }, + { + "status": 2, + "executed": 1692785077 + }, + { + "status": 2, + "executed": 1692785377 + }, + { + "status": 2, + "executed": 1692785677 + }, + { + "status": 2, + "executed": 1692785978 + }, + { + "status": 2, + "executed": 1692786278 + }, + { + "status": 2, + "executed": 1692786577 + }, + { + "status": 2, + "executed": 1692786878 + }, + { + "status": 2, + "executed": 1692787178 + }, + { + "status": 2, + "executed": 1692787478 + }, + { + "status": 2, + "executed": 1692787779 + }, + { + "status": 2, + "executed": 1692788079 + }, + { + "status": 2, + "executed": 1692788379 + }, + { + "status": 2, + "executed": 1692788680 + }, + { + "status": 2, + "executed": 1692788980 + }, + { + "status": 2, + "executed": 1692789280 + }, + { + "status": 2, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31.2121\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34817, + "occurrences_watermark": 34817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31.2121", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ace6a3e1-989a-4e4c-ad68-ba6dd4f5fc4c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net ae31.2199 631", + "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, + "duration": 48.368718878, + "executed": 1692789602, + "history": [ + { + "status": 2, + "executed": 1692783597 + }, + { + "status": 2, + "executed": 1692783897 + }, + { + "status": 2, + "executed": 1692784197 + }, + { + "status": 2, + "executed": 1692784498 + }, + { + "status": 2, + "executed": 1692784798 + }, + { + "status": 2, + "executed": 1692785098 + }, + { + "status": 2, + "executed": 1692785398 + }, + { + "status": 2, + "executed": 1692785698 + }, + { + "status": 2, + "executed": 1692785999 + }, + { + "status": 2, + "executed": 1692786299 + }, + { + "status": 2, + "executed": 1692786600 + }, + { + "status": 2, + "executed": 1692786899 + }, + { + "status": 2, + "executed": 1692787200 + }, + { + "status": 2, + "executed": 1692787500 + }, + { + "status": 2, + "executed": 1692787800 + }, + { + "status": 2, + "executed": 1692788101 + }, + { + "status": 2, + "executed": 1692788401 + }, + { + "status": 2, + "executed": 1692788701 + }, + { + "status": 2, + "executed": 1692789001 + }, + { + "status": 2, + "executed": 1692789302 + }, + { + "status": 2, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=ae31.2199\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34819, + "occurrences_watermark": 34819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-ae31.2199", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b08598a8-8cf3-4477-94f0-ffc39d84a9c9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789651 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net dsc.0 585", + "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, + "duration": 48.308795795, + "executed": 1692789622, + "history": [ + { + "status": 2, + "executed": 1692783617 + }, + { + "status": 2, + "executed": 1692783917 + }, + { + "status": 2, + "executed": 1692784217 + }, + { + "status": 2, + "executed": 1692784517 + }, + { + "status": 2, + "executed": 1692784818 + }, + { + "status": 2, + "executed": 1692785118 + }, + { + "status": 2, + "executed": 1692785418 + }, + { + "status": 2, + "executed": 1692785718 + }, + { + "status": 2, + "executed": 1692786019 + }, + { + "status": 2, + "executed": 1692786319 + }, + { + "status": 2, + "executed": 1692786620 + }, + { + "status": 2, + "executed": 1692786919 + }, + { + "status": 2, + "executed": 1692787219 + }, + { + "status": 2, + "executed": 1692787520 + }, + { + "status": 2, + "executed": 1692787820 + }, + { + "status": 2, + "executed": 1692788121 + }, + { + "status": 2, + "executed": 1692788421 + }, + { + "status": 2, + "executed": 1692788721 + }, + { + "status": 2, + "executed": 1692789021 + }, + { + "status": 2, + "executed": 1692789322 + }, + { + "status": 2, + "executed": 1692789622 + } + ], + "issued": 1692789622, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=dsc.0\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34819, + "occurrences_watermark": 34819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-dsc.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5dd26f3f-6174-4cdf-b467-466305325f38", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789671 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net et-0/0/0 633", + "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, + "duration": 48.460556457, + "executed": 1692789604, + "history": [ + { + "status": 2, + "executed": 1692783598 + }, + { + "status": 2, + "executed": 1692783898 + }, + { + "status": 2, + "executed": 1692784198 + }, + { + "status": 2, + "executed": 1692784498 + }, + { + "status": 2, + "executed": 1692784799 + }, + { + "status": 2, + "executed": 1692785099 + }, + { + "status": 2, + "executed": 1692785399 + }, + { + "status": 2, + "executed": 1692785699 + }, + { + "status": 2, + "executed": 1692786000 + }, + { + "status": 2, + "executed": 1692786300 + }, + { + "status": 2, + "executed": 1692786601 + }, + { + "status": 2, + "executed": 1692786901 + }, + { + "status": 2, + "executed": 1692787201 + }, + { + "status": 2, + "executed": 1692787501 + }, + { + "status": 2, + "executed": 1692787802 + }, + { + "status": 2, + "executed": 1692788102 + }, + { + "status": 2, + "executed": 1692788403 + }, + { + "status": 2, + "executed": 1692788703 + }, + { + "status": 2, + "executed": 1692789003 + }, + { + "status": 2, + "executed": 1692789303 + }, + { + "status": 2, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=et-0/0/0\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34819, + "occurrences_watermark": 34819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-et-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "51803902-8de7-4132-bbfc-894f9bb5952d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net et-0/0/1 635", + "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, + "duration": 48.322640819, + "executed": 1692789559, + "history": [ + { + "status": 2, + "executed": 1692783554 + }, + { + "status": 2, + "executed": 1692783854 + }, + { + "status": 2, + "executed": 1692784154 + }, + { + "status": 2, + "executed": 1692784454 + }, + { + "status": 2, + "executed": 1692784754 + }, + { + "status": 2, + "executed": 1692785055 + }, + { + "status": 2, + "executed": 1692785355 + }, + { + "status": 2, + "executed": 1692785655 + }, + { + "status": 2, + "executed": 1692785955 + }, + { + "status": 2, + "executed": 1692786256 + }, + { + "status": 2, + "executed": 1692786556 + }, + { + "status": 2, + "executed": 1692786856 + }, + { + "status": 2, + "executed": 1692787156 + }, + { + "status": 2, + "executed": 1692787457 + }, + { + "status": 2, + "executed": 1692787757 + }, + { + "status": 2, + "executed": 1692788058 + }, + { + "status": 2, + "executed": 1692788358 + }, + { + "status": 2, + "executed": 1692788658 + }, + { + "status": 2, + "executed": 1692788958 + }, + { + "status": 2, + "executed": 1692789259 + }, + { + "status": 2, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=et-0/0/1\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34818, + "occurrences_watermark": 34818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-et-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cf67e161-cab6-4a38-a510-8fc3ab4412e1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net et-0/0/2 637", + "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, + "duration": 48.393793672, + "executed": 1692789604, + "history": [ + { + "status": 2, + "executed": 1692783598 + }, + { + "status": 2, + "executed": 1692783898 + }, + { + "status": 2, + "executed": 1692784198 + }, + { + "status": 2, + "executed": 1692784498 + }, + { + "status": 2, + "executed": 1692784799 + }, + { + "status": 2, + "executed": 1692785099 + }, + { + "status": 2, + "executed": 1692785399 + }, + { + "status": 2, + "executed": 1692785699 + }, + { + "status": 2, + "executed": 1692786000 + }, + { + "status": 2, + "executed": 1692786300 + }, + { + "status": 2, + "executed": 1692786601 + }, + { + "status": 2, + "executed": 1692786901 + }, + { + "status": 2, + "executed": 1692787201 + }, + { + "status": 2, + "executed": 1692787501 + }, + { + "status": 2, + "executed": 1692787802 + }, + { + "status": 2, + "executed": 1692788102 + }, + { + "status": 2, + "executed": 1692788403 + }, + { + "status": 2, + "executed": 1692788703 + }, + { + "status": 2, + "executed": 1692789003 + }, + { + "status": 2, + "executed": 1692789303 + }, + { + "status": 2, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=et-0/0/2\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34818, + "occurrences_watermark": 34818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-et-0-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e624d32-063f-4e95-8f62-748438eaee6b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net lt-0/0/0 581", + "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, + "duration": 48.356881139, + "executed": 1692789591, + "history": [ + { + "status": 2, + "executed": 1692783587 + }, + { + "status": 2, + "executed": 1692783887 + }, + { + "status": 2, + "executed": 1692784187 + }, + { + "status": 2, + "executed": 1692784487 + }, + { + "status": 2, + "executed": 1692784787 + }, + { + "status": 2, + "executed": 1692785087 + }, + { + "status": 2, + "executed": 1692785388 + }, + { + "status": 2, + "executed": 1692785688 + }, + { + "status": 2, + "executed": 1692785988 + }, + { + "status": 2, + "executed": 1692786288 + }, + { + "status": 2, + "executed": 1692786589 + }, + { + "status": 2, + "executed": 1692786889 + }, + { + "status": 2, + "executed": 1692787189 + }, + { + "status": 2, + "executed": 1692787489 + }, + { + "status": 2, + "executed": 1692787789 + }, + { + "status": 2, + "executed": 1692788090 + }, + { + "status": 2, + "executed": 1692788390 + }, + { + "status": 2, + "executed": 1692788690 + }, + { + "status": 2, + "executed": 1692788990 + }, + { + "status": 2, + "executed": 1692789291 + }, + { + "status": 2, + "executed": 1692789591 + } + ], + "issued": 1692789591, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=lt-0/0/0\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-lt-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc59c9f1-85d8-46c1-8df8-6577ddbca841", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789639 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net lt-0/0/0.15 538", + "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, + "duration": 48.422945487, + "executed": 1692789400, + "history": [ + { + "status": 2, + "executed": 1692783397 + }, + { + "status": 2, + "executed": 1692783697 + }, + { + "status": 2, + "executed": 1692783997 + }, + { + "status": 2, + "executed": 1692784297 + }, + { + "status": 2, + "executed": 1692784598 + }, + { + "status": 2, + "executed": 1692784898 + }, + { + "status": 2, + "executed": 1692785198 + }, + { + "status": 2, + "executed": 1692785498 + }, + { + "status": 2, + "executed": 1692785798 + }, + { + "status": 2, + "executed": 1692786099 + }, + { + "status": 2, + "executed": 1692786398 + }, + { + "status": 2, + "executed": 1692786699 + }, + { + "status": 2, + "executed": 1692786999 + }, + { + "status": 2, + "executed": 1692787299 + }, + { + "status": 2, + "executed": 1692787599 + }, + { + "status": 2, + "executed": 1692787899 + }, + { + "status": 2, + "executed": 1692788200 + }, + { + "status": 2, + "executed": 1692788500 + }, + { + "status": 2, + "executed": 1692788800 + }, + { + "status": 2, + "executed": 1692789100 + }, + { + "status": 2, + "executed": 1692789400 + } + ], + "issued": 1692789400, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=lt-0/0/0.15\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 28603, + "occurrences_watermark": 28603, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-lt-0-0-0.15", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "54dba75d-fb35-4092-8971-7e530be9925c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net lt-0/0/0.51 539", + "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, + "duration": 48.320332942, + "executed": 1692789578, + "history": [ + { + "status": 2, + "executed": 1692783573 + }, + { + "status": 2, + "executed": 1692783874 + }, + { + "status": 2, + "executed": 1692784174 + }, + { + "status": 2, + "executed": 1692784474 + }, + { + "status": 2, + "executed": 1692784774 + }, + { + "status": 2, + "executed": 1692785074 + }, + { + "status": 2, + "executed": 1692785374 + }, + { + "status": 2, + "executed": 1692785674 + }, + { + "status": 2, + "executed": 1692785975 + }, + { + "status": 2, + "executed": 1692786275 + }, + { + "status": 2, + "executed": 1692786575 + }, + { + "status": 2, + "executed": 1692786875 + }, + { + "status": 2, + "executed": 1692787175 + }, + { + "status": 2, + "executed": 1692787476 + }, + { + "status": 2, + "executed": 1692787776 + }, + { + "status": 2, + "executed": 1692788077 + }, + { + "status": 2, + "executed": 1692788377 + }, + { + "status": 2, + "executed": 1692788677 + }, + { + "status": 2, + "executed": 1692788978 + }, + { + "status": 2, + "executed": 1692789278 + }, + { + "status": 2, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=lt-0/0/0.51\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 28605, + "occurrences_watermark": 28605, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-lt-0-0-0.51", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "36f15609-c7b5-4dc6-b748-e773203c7632", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/0 563", + "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, + "duration": 48.296745212, + "executed": 1692789650, + "history": [ + { + "status": 2, + "executed": 1692783646 + }, + { + "status": 2, + "executed": 1692783946 + }, + { + "status": 2, + "executed": 1692784246 + }, + { + "status": 2, + "executed": 1692784546 + }, + { + "status": 2, + "executed": 1692784846 + }, + { + "status": 2, + "executed": 1692785146 + }, + { + "status": 2, + "executed": 1692785447 + }, + { + "status": 2, + "executed": 1692785747 + }, + { + "status": 2, + "executed": 1692786047 + }, + { + "status": 2, + "executed": 1692786347 + }, + { + "status": 2, + "executed": 1692786648 + }, + { + "status": 2, + "executed": 1692786948 + }, + { + "status": 2, + "executed": 1692787248 + }, + { + "status": 2, + "executed": 1692787548 + }, + { + "status": 2, + "executed": 1692787849 + }, + { + "status": 2, + "executed": 1692788149 + }, + { + "status": 2, + "executed": 1692788449 + }, + { + "status": 2, + "executed": 1692788749 + }, + { + "status": 2, + "executed": 1692789049 + }, + { + "status": 2, + "executed": 1692789350 + }, + { + "status": 2, + "executed": 1692789650 + } + ], + "issued": 1692789650, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=xe-0/1/0\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-xe-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9b6bba53-8b5f-4215-ab3a-aec648d3f8bd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789699 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/1 564", + "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, + "duration": 48.37879033, + "executed": 1692789588, + "history": [ + { + "status": 2, + "executed": 1692783583 + }, + { + "status": 2, + "executed": 1692783883 + }, + { + "status": 2, + "executed": 1692784183 + }, + { + "status": 2, + "executed": 1692784483 + }, + { + "status": 2, + "executed": 1692784783 + }, + { + "status": 2, + "executed": 1692785084 + }, + { + "status": 2, + "executed": 1692785384 + }, + { + "status": 2, + "executed": 1692785684 + }, + { + "status": 2, + "executed": 1692785985 + }, + { + "status": 2, + "executed": 1692786285 + }, + { + "status": 2, + "executed": 1692786584 + }, + { + "status": 2, + "executed": 1692786885 + }, + { + "status": 2, + "executed": 1692787188 + }, + { + "status": 2, + "executed": 1692787486 + }, + { + "status": 2, + "executed": 1692787787 + }, + { + "status": 2, + "executed": 1692788087 + }, + { + "status": 2, + "executed": 1692788387 + }, + { + "status": 2, + "executed": 1692788688 + }, + { + "status": 2, + "executed": 1692788988 + }, + { + "status": 2, + "executed": 1692789288 + }, + { + "status": 2, + "executed": 1692789588 + } + ], + "issued": 1692789588, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=xe-0/1/1\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a18c018d-389a-4888-8fd3-82c126012ef2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789636 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/1.10 592", + "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, + "duration": 48.317430212, + "executed": 1692789579, + "history": [ + { + "status": 2, + "executed": 1692783575 + }, + { + "status": 2, + "executed": 1692783875 + }, + { + "status": 2, + "executed": 1692784175 + }, + { + "status": 2, + "executed": 1692784475 + }, + { + "status": 2, + "executed": 1692784776 + }, + { + "status": 2, + "executed": 1692785076 + }, + { + "status": 2, + "executed": 1692785376 + }, + { + "status": 2, + "executed": 1692785676 + }, + { + "status": 2, + "executed": 1692785977 + }, + { + "status": 2, + "executed": 1692786277 + }, + { + "status": 2, + "executed": 1692786576 + }, + { + "status": 2, + "executed": 1692786877 + }, + { + "status": 2, + "executed": 1692787177 + }, + { + "status": 2, + "executed": 1692787477 + }, + { + "status": 2, + "executed": 1692787778 + }, + { + "status": 2, + "executed": 1692788078 + }, + { + "status": 2, + "executed": 1692788378 + }, + { + "status": 2, + "executed": 1692788679 + }, + { + "status": 2, + "executed": 1692788979 + }, + { + "status": 2, + "executed": 1692789279 + }, + { + "status": 2, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=xe-0/1/1.10\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34817, + "occurrences_watermark": 34817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-xe-0-1-1.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "306e6529-7033-42ac-9ee7-6eebbc1f0048", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/2 565", + "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, + "duration": 48.342041598, + "executed": 1692789553, + "history": [ + { + "status": 2, + "executed": 1692783549 + }, + { + "status": 2, + "executed": 1692783849 + }, + { + "status": 2, + "executed": 1692784149 + }, + { + "status": 2, + "executed": 1692784449 + }, + { + "status": 2, + "executed": 1692784749 + }, + { + "status": 2, + "executed": 1692785050 + }, + { + "status": 2, + "executed": 1692785350 + }, + { + "status": 2, + "executed": 1692785650 + }, + { + "status": 2, + "executed": 1692785950 + }, + { + "status": 2, + "executed": 1692786251 + }, + { + "status": 2, + "executed": 1692786550 + }, + { + "status": 2, + "executed": 1692786851 + }, + { + "status": 2, + "executed": 1692787151 + }, + { + "status": 2, + "executed": 1692787451 + }, + { + "status": 2, + "executed": 1692787752 + }, + { + "status": 2, + "executed": 1692788052 + }, + { + "status": 2, + "executed": 1692788354 + }, + { + "status": 2, + "executed": 1692788653 + }, + { + "status": 2, + "executed": 1692788953 + }, + { + "status": 2, + "executed": 1692789253 + }, + { + "status": 2, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=xe-0/1/2\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34819, + "occurrences_watermark": 34819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-xe-0-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c0ed4a57-4dbe-4b2c-941d-0a44fe679108", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789601 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/3 566", + "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, + "duration": 48.457982072, + "executed": 1692789379, + "history": [ + { + "status": 2, + "executed": 1692783375 + }, + { + "status": 2, + "executed": 1692783675 + }, + { + "status": 2, + "executed": 1692783975 + }, + { + "status": 2, + "executed": 1692784275 + }, + { + "status": 2, + "executed": 1692784576 + }, + { + "status": 2, + "executed": 1692784876 + }, + { + "status": 2, + "executed": 1692785176 + }, + { + "status": 2, + "executed": 1692785476 + }, + { + "status": 2, + "executed": 1692785777 + }, + { + "status": 2, + "executed": 1692786077 + }, + { + "status": 2, + "executed": 1692786377 + }, + { + "status": 2, + "executed": 1692786678 + }, + { + "status": 2, + "executed": 1692786977 + }, + { + "status": 2, + "executed": 1692787278 + }, + { + "status": 2, + "executed": 1692787578 + }, + { + "status": 2, + "executed": 1692787878 + }, + { + "status": 2, + "executed": 1692788178 + }, + { + "status": 2, + "executed": 1692788479 + }, + { + "status": 2, + "executed": 1692788779 + }, + { + "status": 2, + "executed": 1692789079 + }, + { + "status": 2, + "executed": 1692789379 + } + ], + "issued": 1692789379, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=xe-0/1/3\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34817, + "occurrences_watermark": 34817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-xe-0-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8870ef74-8832-4ec6-9b76-3ff5af77e58f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789428 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/3.0 595", + "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, + "duration": 48.419156415, + "executed": 1692789387, + "history": [ + { + "status": 2, + "executed": 1692783383 + }, + { + "status": 2, + "executed": 1692783685 + }, + { + "status": 2, + "executed": 1692783983 + }, + { + "status": 2, + "executed": 1692784283 + }, + { + "status": 2, + "executed": 1692784584 + }, + { + "status": 2, + "executed": 1692784884 + }, + { + "status": 2, + "executed": 1692785184 + }, + { + "status": 2, + "executed": 1692785484 + }, + { + "status": 2, + "executed": 1692785784 + }, + { + "status": 2, + "executed": 1692786085 + }, + { + "status": 2, + "executed": 1692786384 + }, + { + "status": 2, + "executed": 1692786685 + }, + { + "status": 2, + "executed": 1692786985 + }, + { + "status": 2, + "executed": 1692787285 + }, + { + "status": 2, + "executed": 1692787585 + }, + { + "status": 2, + "executed": 1692787885 + }, + { + "status": 2, + "executed": 1692788186 + }, + { + "status": 2, + "executed": 1692788486 + }, + { + "status": 2, + "executed": 1692788786 + }, + { + "status": 2, + "executed": 1692789087 + }, + { + "status": 2, + "executed": 1692789387 + } + ], + "issued": 1692789387, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=xe-0/1/3.0\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34816, + "occurrences_watermark": 34816, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-xe-0-1-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "62b3532e-5aaa-4dcf-bea0-72e233f8b503", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/4.0 530", + "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, + "duration": 48.356809911, + "executed": 1692789400, + "history": [ + { + "status": 2, + "executed": 1692783396 + }, + { + "status": 2, + "executed": 1692783696 + }, + { + "status": 2, + "executed": 1692783996 + }, + { + "status": 2, + "executed": 1692784296 + }, + { + "status": 2, + "executed": 1692784597 + }, + { + "status": 2, + "executed": 1692784897 + }, + { + "status": 2, + "executed": 1692785197 + }, + { + "status": 2, + "executed": 1692785497 + }, + { + "status": 2, + "executed": 1692785797 + }, + { + "status": 2, + "executed": 1692786098 + }, + { + "status": 2, + "executed": 1692786397 + }, + { + "status": 2, + "executed": 1692786698 + }, + { + "status": 2, + "executed": 1692786998 + }, + { + "status": 2, + "executed": 1692787298 + }, + { + "status": 2, + "executed": 1692787598 + }, + { + "status": 2, + "executed": 1692787898 + }, + { + "status": 2, + "executed": 1692788198 + }, + { + "status": 2, + "executed": 1692788499 + }, + { + "status": 2, + "executed": 1692788799 + }, + { + "status": 2, + "executed": 1692789100 + }, + { + "status": 2, + "executed": 1692789400 + } + ], + "issued": 1692789400, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=xe-0/1/4.0\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34817, + "occurrences_watermark": 34817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-xe-0-1-4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "16cb9e2f-bfff-475b-9b08-622096beb2a2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789448 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/6 561", + "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, + "duration": 49.268832465, + "executed": 1692789514, + "history": [ + { + "status": 2, + "executed": 1692783510 + }, + { + "status": 2, + "executed": 1692783811 + }, + { + "status": 2, + "executed": 1692784111 + }, + { + "status": 2, + "executed": 1692784411 + }, + { + "status": 2, + "executed": 1692784711 + }, + { + "status": 2, + "executed": 1692785011 + }, + { + "status": 2, + "executed": 1692785311 + }, + { + "status": 2, + "executed": 1692785612 + }, + { + "status": 2, + "executed": 1692785912 + }, + { + "status": 2, + "executed": 1692786212 + }, + { + "status": 2, + "executed": 1692786512 + }, + { + "status": 2, + "executed": 1692786813 + }, + { + "status": 2, + "executed": 1692787113 + }, + { + "status": 2, + "executed": 1692787413 + }, + { + "status": 2, + "executed": 1692787714 + }, + { + "status": 2, + "executed": 1692788014 + }, + { + "status": 2, + "executed": 1692788314 + }, + { + "status": 2, + "executed": 1692788614 + }, + { + "status": 2, + "executed": 1692788915 + }, + { + "status": 2, + "executed": 1692789215 + }, + { + "status": 2, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=xe-0/1/6\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34818, + "occurrences_watermark": 34818, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-xe-0-1-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b39cd7c4-c910-4a3c-9cd8-67bbb40be8aa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789564 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lab.office.geant.net xe-0/1/7 562", + "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, + "duration": 48.315549252, + "executed": 1692789399, + "history": [ + { + "status": 2, + "executed": 1692783395 + }, + { + "status": 2, + "executed": 1692783695 + }, + { + "status": 2, + "executed": 1692783996 + }, + { + "status": 2, + "executed": 1692784296 + }, + { + "status": 2, + "executed": 1692784596 + }, + { + "status": 2, + "executed": 1692784896 + }, + { + "status": 2, + "executed": 1692785196 + }, + { + "status": 2, + "executed": 1692785496 + }, + { + "status": 2, + "executed": 1692785797 + }, + { + "status": 2, + "executed": 1692786097 + }, + { + "status": 2, + "executed": 1692786397 + }, + { + "status": 2, + "executed": 1692786697 + }, + { + "status": 2, + "executed": 1692786997 + }, + { + "status": 2, + "executed": 1692787298 + }, + { + "status": 2, + "executed": 1692787598 + }, + { + "status": 2, + "executed": 1692787898 + }, + { + "status": 2, + "executed": 1692788198 + }, + { + "status": 2, + "executed": 1692788498 + }, + { + "status": 2, + "executed": 1692788799 + }, + { + "status": 2, + "executed": 1692789099 + }, + { + "status": 2, + "executed": 1692789399 + } + ], + "issued": 1692789399, + "output": "Timeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\nTimeout: No Response from mx1.lab.office.geant.net.\nerror matching snmp output:\ncounters,hostname=mx1.lab.office.geant.net,interface_name=xe-0/1/7\n", + "state": "failing", + "status": 2, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34817, + "occurrences_watermark": 34817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lab.office.geant.net-xe-0-1-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lab.office.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lab.office.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ad8ae15b-6e7f-4547-9ebb-2f087911c94e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789447 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 661500", + "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, + "duration": 0.44467781, + "executed": 1692789426, + "history": [ + { + "status": 0, + "executed": 1692783422 + }, + { + "status": 0, + "executed": 1692783722 + }, + { + "status": 0, + "executed": 1692784022 + }, + { + "status": 0, + "executed": 1692784322 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785823 + }, + { + "status": 0, + "executed": 1692786123 + }, + { + "status": 0, + "executed": 1692786424 + }, + { + "status": 0, + "executed": 1692786724 + }, + { + "status": 0, + "executed": 1692787024 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787925 + }, + { + "status": 0, + "executed": 1692788225 + }, + { + "status": 0, + "executed": 1692788525 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789126 + }, + { + "status": 0, + "executed": 1692789426 + } + ], + "issued": 1692789426, + "output": "dscp32_counters,service_id=661500,hostname=mx1.lon.uk.geant.net,interface_name=ae21.333 ingressOctets=150737566458247,egressOctets=581761987387968\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789426, + "occurrences": 3425, + "occurrences_watermark": 3425, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-IUCC_AP1_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "515c40d8-4366-494b-b7f7-71e640b51ba5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.lon.uk.geant.net", + "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, + "duration": 7.896994622, + "executed": 1692789460, + "history": [ + { + "status": 1, + "executed": 1692783455 + }, + { + "status": 1, + "executed": 1692783755 + }, + { + "status": 1, + "executed": 1692784055 + }, + { + "status": 1, + "executed": 1692784356 + }, + { + "status": 1, + "executed": 1692784656 + }, + { + "status": 1, + "executed": 1692784956 + }, + { + "status": 1, + "executed": 1692785256 + }, + { + "status": 1, + "executed": 1692785557 + }, + { + "status": 1, + "executed": 1692785857 + }, + { + "status": 1, + "executed": 1692786157 + }, + { + "status": 1, + "executed": 1692786457 + }, + { + "status": 1, + "executed": 1692786758 + }, + { + "status": 1, + "executed": 1692787058 + }, + { + "status": 1, + "executed": 1692787358 + }, + { + "status": 1, + "executed": 1692787659 + }, + { + "status": 1, + "executed": 1692787959 + }, + { + "status": 1, + "executed": 1692788259 + }, + { + "status": 1, + "executed": 1692788559 + }, + { + "status": 1, + "executed": 1692788860 + }, + { + "status": 1, + "executed": 1692789160 + }, + { + "status": 1, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "2023-08-23 11:17:40,651 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:40,651 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:40,651 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:40,651 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.lon.uk.geant.net\n2023-08-23 11:17:40,654 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:40,675 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.lon.uk.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.1 octets=359861509078\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.2 octets=23102063731\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.6 octets=0\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.8 octets=43298069351\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.9 octets=25352405960\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.10 octets=753510030706\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.11 octets=368825724882\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.12 octets=350312936058\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.13 octets=1429776190086\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.14 octets=24967835449\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.15 octets=749346480255\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.16 octets=462822853345\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.17 octets=333635810575\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.18 octets=1421782230208\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.19 octets=458277949521\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.20 octets=760633711396\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.21 octets=447102409053\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.23 octets=624179627017\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.24 octets=1842390968260\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.25 octets=147727544584\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.27 octets=61815474212\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.28 octets=314619462694\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.29 octets=2607475008676\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.30 octets=3682370450582\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.32 octets=3339455647949\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.33 octets=3151900350408\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.34 octets=390354062433\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.35 octets=1973591082494\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.36 octets=1932842772428\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.37 octets=7161538218037\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.38 octets=10833358102894\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.39 octets=1502631219292\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.40 octets=745791554258\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.41 octets=611424168071\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.42 octets=4874669584484\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.43 octets=14706451523708\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.44 octets=1361179517614\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.45 octets=10728165669449\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.46 octets=641039723581\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.47 octets=1507141142983\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.48 octets=753796998975\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.49 octets=606693771941\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.50 octets=4955163245667\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.51 octets=14950820818425\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.52 octets=1385658363785\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.53 octets=13157718355827\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.54 octets=167066513052\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.55 octets=387032126969\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.56 octets=446064481719\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.57 octets=321887335161\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.58 octets=315689613109\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.59 octets=607695306085\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.61 octets=140273061588\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.62 octets=139546371056\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.63 octets=22010797742\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.64 octets=521649330253\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.65 octets=59628537063\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.66 octets=10687169010\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.67 octets=1192128359932\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.68 octets=1369198942620\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.222.69 octets=520824175510\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.223.1 octets=36353807375882\nmulticast,hostname=mx1.lon.uk.geant.net,subscription=232.223.223.22 octets=73548862695083\n2023-08-23 11:17:48,091 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.7,232.223.222.22,232.223.222.26,232.223.222.31,232.223.222.60,232.223.222.70,232.223.222.71,232.223.222.72\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 18355, + "occurrences_watermark": 18355, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.lon.uk.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ccfe0210-509c-4d4e-9934-dd46d3e07d81", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789468 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10 706", + "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, + "duration": 0.518030623, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783598 + }, + { + "status": 0, + "executed": 1692783898 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae10 ingressOctets=43715538816322242,egressOctets=48756298389883705,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 1069, + "occurrences_watermark": 1069, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f5e44dbb-a37b-4ea9-b1a2-ccde0c4cb4b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.0 770", + "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, + "duration": 0.943600333, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785629 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786528 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789531, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae10.0 ingressOctets=37819935241388844,egressOctets=37297402099694908,ingressErrors=0,egressErrors=0,ingressOctetsv6=18945788761524226,egressOctetsv6=13103914543796097,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae10.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "32bca36b-4cee-4c08-b5a3-6b468c9046fc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.2030 967", + "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, + "duration": 0.549077102, + "executed": 1692789460, + "history": [ + { + "status": 0, + "executed": 1692783455 + }, + { + "status": 0, + "executed": 1692783755 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784356 + }, + { + "status": 0, + "executed": 1692784656 + }, + { + "status": 0, + "executed": 1692784956 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785557 + }, + { + "status": 0, + "executed": 1692785857 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786458 + }, + { + "status": 0, + "executed": 1692786758 + }, + { + "status": 0, + "executed": 1692787058 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787659 + }, + { + "status": 0, + "executed": 1692787959 + }, + { + "status": 0, + "executed": 1692788259 + }, + { + "status": 0, + "executed": 1692788559 + }, + { + "status": 0, + "executed": 1692788860 + }, + { + "status": 0, + "executed": 1692789160 + }, + { + "status": 0, + "executed": 1692789460 + } + ], + "issued": 1692789460, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae10.2030 ingressOctets=3787173251864200,egressOctets=11424462529304207,ingressErrors=0,egressErrors=0,ingressOctetsv6=3104197692976097,egressOctetsv6=4336685712466076,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789460, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae10.2030", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cd1580f4-0d4e-4846-8bf1-3a6680c3fa17", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789460 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.3015 733", + "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, + "duration": 0.497045412, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae10.3015 ingressOctets=3628705375,egressOctets=2946087466,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae10.3015", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "085151f9-4fdb-490b-9a2a-a9ceb1c2857b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.310 1217", + "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, + "duration": 0.468864088, + "executed": 1692789438, + "history": [ + { + "status": 0, + "executed": 1692783434 + }, + { + "status": 0, + "executed": 1692783734 + }, + { + "status": 0, + "executed": 1692784034 + }, + { + "status": 0, + "executed": 1692784334 + }, + { + "status": 0, + "executed": 1692784635 + }, + { + "status": 0, + "executed": 1692784935 + }, + { + "status": 0, + "executed": 1692785235 + }, + { + "status": 0, + "executed": 1692785535 + }, + { + "status": 0, + "executed": 1692785835 + }, + { + "status": 0, + "executed": 1692786136 + }, + { + "status": 0, + "executed": 1692786436 + }, + { + "status": 0, + "executed": 1692786736 + }, + { + "status": 0, + "executed": 1692787036 + }, + { + "status": 0, + "executed": 1692787337 + }, + { + "status": 0, + "executed": 1692787637 + }, + { + "status": 0, + "executed": 1692787937 + }, + { + "status": 0, + "executed": 1692788237 + }, + { + "status": 0, + "executed": 1692788537 + }, + { + "status": 0, + "executed": 1692788838 + }, + { + "status": 0, + "executed": 1692789138 + }, + { + "status": 0, + "executed": 1692789438 + } + ], + "issued": 1692789438, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae10.310 ingressOctets=125700,egressOctets=121200,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789438, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae10.310", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "076b9769-5711-4698-86d0-1963a94fa69c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789438 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.333 781", + "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, + "duration": 0.485654045, + "executed": 1692789636, + "history": [ + { + "status": 0, + "executed": 1692783631 + }, + { + "status": 0, + "executed": 1692783931 + }, + { + "status": 0, + "executed": 1692784231 + }, + { + "status": 0, + "executed": 1692784531 + }, + { + "status": 0, + "executed": 1692784832 + }, + { + "status": 0, + "executed": 1692785132 + }, + { + "status": 0, + "executed": 1692785432 + }, + { + "status": 0, + "executed": 1692785732 + }, + { + "status": 0, + "executed": 1692786033 + }, + { + "status": 0, + "executed": 1692786333 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786933 + }, + { + "status": 0, + "executed": 1692787233 + }, + { + "status": 0, + "executed": 1692787534 + }, + { + "status": 0, + "executed": 1692787834 + }, + { + "status": 0, + "executed": 1692788134 + }, + { + "status": 0, + "executed": 1692788435 + }, + { + "status": 0, + "executed": 1692788735 + }, + { + "status": 0, + "executed": 1692789035 + }, + { + "status": 0, + "executed": 1692789336 + }, + { + "status": 0, + "executed": 1692789636 + } + ], + "issued": 1692789635, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae10.333 ingressOctets=2102486781294417,egressOctets=5262959240437,ingressErrors=0,egressErrors=0,ingressOctetsv6=15040149555611,egressOctetsv6=1271980684,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789636, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae10.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e9ed7f64-b844-4c95-9f48-4fdec0152ffc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789636 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.4006 1186", + "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, + "duration": 0.694645334, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784095 + }, + { + "status": 0, + "executed": 1692784395 + }, + { + "status": 0, + "executed": 1692784695 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785596 + }, + { + "status": 0, + "executed": 1692785896 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae10.4006 ingressOctets=11242771893,egressOctets=5299461000,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae10.4006", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aa2d0397-db61-4a6b-b7b0-f9da0c4342c3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.700 1233", + "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, + "duration": 0.569278945, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783587 + }, + { + "status": 0, + "executed": 1692783887 + }, + { + "status": 0, + "executed": 1692784187 + }, + { + "status": 0, + "executed": 1692784487 + }, + { + "status": 0, + "executed": 1692784787 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785988 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787189 + }, + { + "status": 0, + "executed": 1692787489 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788090 + }, + { + "status": 0, + "executed": 1692788390 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789291 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789591, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae10.700 ingressOctets=5340,egressOctets=5414760,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae10.700", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3d982a48-3a55-4bc3-b65e-5282acd9f63c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae10.930 1095", + "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, + "duration": 0.485562969, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae10.930 ingressOctets=4583395900949,egressOctets=28530440575599,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae10.930", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d6c68956-4e55-4561-bd04-99f1a99a0937", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae11 707", + "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, + "duration": 0.527051772, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae11 ingressOctets=1268786782873,egressOctets=25384243653,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 18337, + "occurrences_watermark": 18337, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f544eab5-1a58-45c2-a483-e0341ee12cd1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae11.1103 859", + "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, + "duration": 0.50008587, + "executed": 1692789509, + "history": [ + { + "status": 0, + "executed": 1692783505 + }, + { + "status": 0, + "executed": 1692783805 + }, + { + "status": 0, + "executed": 1692784106 + }, + { + "status": 0, + "executed": 1692784406 + }, + { + "status": 0, + "executed": 1692784706 + }, + { + "status": 0, + "executed": 1692785006 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785607 + }, + { + "status": 0, + "executed": 1692785907 + }, + { + "status": 0, + "executed": 1692786207 + }, + { + "status": 0, + "executed": 1692786507 + }, + { + "status": 0, + "executed": 1692786808 + }, + { + "status": 0, + "executed": 1692787108 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787709 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788910 + }, + { + "status": 0, + "executed": 1692789210 + }, + { + "status": 0, + "executed": 1692789509 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae11.1103 ingressOctets=1262811379916,egressOctets=5736237159,ingressErrors=0,egressErrors=0,ingressOctetsv6=21613510581,egressOctetsv6=1384769106,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789509, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae11.1103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2b764478-3441-4848-935f-e19df59dc3d5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789510 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae11.333 860", + "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, + "duration": 0.478068299, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785077 + }, + { + "status": 0, + "executed": 1692785377 + }, + { + "status": 0, + "executed": 1692785677 + }, + { + "status": 0, + "executed": 1692785978 + }, + { + "status": 0, + "executed": 1692786278 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786878 + }, + { + "status": 0, + "executed": 1692787178 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787779 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788680 + }, + { + "status": 0, + "executed": 1692788980 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae11.333 ingressOctets=2501290297,egressOctets=19206211981,ingressErrors=0,egressErrors=0,ingressOctetsv6=735449697,egressOctetsv6=6113112776,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae11.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c302eddc-8d4f-4e70-8360-ac6ce31a949d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12 1705", + "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, + "duration": 0.476406901, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783498 + }, + { + "status": 0, + "executed": 1692783798 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692784999 + }, + { + "status": 0, + "executed": 1692785299 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786200 + }, + { + "status": 0, + "executed": 1692786500 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787401 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788002 + }, + { + "status": 0, + "executed": 1692788302 + }, + { + "status": 0, + "executed": 1692788602 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12 ingressOctets=829033134113799,egressOctets=3037298302798813,ingressErrors=8,egressErrors=18,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1df6b80b-add5-4b94-a25d-7f7722d58e1e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.1002 579", + "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, + "duration": 0.475869441, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.1002 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.1002", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "de5bec3d-844f-4421-9b20-2c889b9c4d82", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.1305 1231", + "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, + "duration": 0.566891034, + "executed": 1692789681, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788180 + }, + { + "status": 0, + "executed": 1692788480 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789081 + }, + { + "status": 0, + "executed": 1692789381 + }, + { + "status": 0, + "executed": 1692789681 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.1305 ingressOctets=190364081,egressOctets=129095,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789681, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.1305", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b0f74fdd-e788-4ffe-a796-9b3232f445d4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.1306 1247", + "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, + "duration": 0.479976654, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783563 + }, + { + "status": 0, + "executed": 1692783863 + }, + { + "status": 0, + "executed": 1692784163 + }, + { + "status": 0, + "executed": 1692784465 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.1306 ingressOctets=190356053,egressOctets=116311,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.1306", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1e72b635-3b3a-4663-9d58-847119af6b23", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.2260 572", + "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, + "duration": 0.524466766, + "executed": 1692789566, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785363 + }, + { + "status": 0, + "executed": 1692785663 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786864 + }, + { + "status": 0, + "executed": 1692787164 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787765 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788666 + }, + { + "status": 0, + "executed": 1692788966 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789566 + } + ], + "issued": 1692789566, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.2260 ingressOctets=71862631009,egressOctets=46615769167,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789566, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.2260", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cd00f60e-f725-4a68-b4a5-12fc62c4d8be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.2265 1264", + "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, + "duration": 0.460819684, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786407 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789108 + }, + { + "status": 0, + "executed": 1692789408 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.2265 ingressOctets=2963858196,egressOctets=2488102357,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.2265", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9b4cff3d-947b-4741-bbbd-023f31f93672", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789708 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3100 933", + "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, + "duration": 0.486968098, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3100 ingressOctets=23287404922303,egressOctets=36226378297270,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f3cc0efb-d5d3-40a4-b5b3-b2875f462e48", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3101 666", + "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, + "duration": 0.533913312, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786407 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789108 + }, + { + "status": 0, + "executed": 1692789408 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3101 ingressOctets=300277851707764,egressOctets=955469745144753,ingressErrors=0,egressErrors=0,ingressOctetsv6=10542182787278,egressOctetsv6=948410196498,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a318a28c-ca90-46bc-ae78-e2329999037e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789708 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3102 682", + "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, + "duration": 0.520061666, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3102 ingressOctets=47340319870599,egressOctets=140171839240,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 18341, + "occurrences_watermark": 18341, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3102", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3ebf4510-a2d3-42d6-ab1e-31e64b88d8c0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3104 990", + "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, + "duration": 0.53218557, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3104 ingressOctets=102627777096673,egressOctets=848878203258264,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3104", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "30fc6173-f598-46eb-8501-105abba571a6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3140 760", + "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, + "duration": 0.475580624, + "executed": 1692789427, + "history": [ + { + "status": 0, + "executed": 1692783423 + }, + { + "status": 0, + "executed": 1692783723 + }, + { + "status": 0, + "executed": 1692784023 + }, + { + "status": 0, + "executed": 1692784323 + }, + { + "status": 0, + "executed": 1692784623 + }, + { + "status": 0, + "executed": 1692784923 + }, + { + "status": 0, + "executed": 1692785223 + }, + { + "status": 0, + "executed": 1692785523 + }, + { + "status": 0, + "executed": 1692785824 + }, + { + "status": 0, + "executed": 1692786124 + }, + { + "status": 0, + "executed": 1692786424 + }, + { + "status": 0, + "executed": 1692786725 + }, + { + "status": 0, + "executed": 1692787025 + }, + { + "status": 0, + "executed": 1692787325 + }, + { + "status": 0, + "executed": 1692787625 + }, + { + "status": 0, + "executed": 1692787925 + }, + { + "status": 0, + "executed": 1692788226 + }, + { + "status": 0, + "executed": 1692788526 + }, + { + "status": 0, + "executed": 1692788826 + }, + { + "status": 0, + "executed": 1692789127 + }, + { + "status": 0, + "executed": 1692789427 + } + ], + "issued": 1692789427, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3140 ingressOctets=51576059239240,egressOctets=101480244314399,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789427, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3140", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "930037a8-4474-400b-8fbf-a2717e985ad2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789427 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3151 758", + "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, + "duration": 0.481138826, + "executed": 1692789721, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785818 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786719 + }, + { + "status": 0, + "executed": 1692787019 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787920 + }, + { + "status": 0, + "executed": 1692788220 + }, + { + "status": 0, + "executed": 1692788520 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789121 + }, + { + "status": 0, + "executed": 1692789421 + }, + { + "status": 0, + "executed": 1692789721 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3151 ingressOctets=124005608074043,egressOctets=226732793111438,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789721, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3151", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5a528840-7a51-45b0-912a-2fb928134028", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3160 1709", + "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, + "duration": 0.477390467, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783454 + }, + { + "status": 0, + "executed": 1692783754 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784355 + }, + { + "status": 0, + "executed": 1692784655 + }, + { + "status": 0, + "executed": 1692784955 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785556 + }, + { + "status": 0, + "executed": 1692785856 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786456 + }, + { + "status": 0, + "executed": 1692786757 + }, + { + "status": 0, + "executed": 1692787057 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787658 + }, + { + "status": 0, + "executed": 1692787958 + }, + { + "status": 0, + "executed": 1692788258 + }, + { + "status": 0, + "executed": 1692788558 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3160 ingressOctets=13002158861849,egressOctets=306786321997528,ingressErrors=0,egressErrors=0,ingressOctetsv6=17081878881,egressOctetsv6=21290239436,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3160", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b49092db-b3f5-4e2a-8954-e1cd87f23fe9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3179 581", + "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, + "duration": 0.454068441, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3179 ingressOctets=504615506083,egressOctets=645045344550,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3179", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0de17d2c-e7db-47ce-8e24-91f94cc5b4a6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789504 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3200 569", + "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, + "duration": 0.475451716, + "executed": 1692789509, + "history": [ + { + "status": 0, + "executed": 1692783504 + }, + { + "status": 0, + "executed": 1692783804 + }, + { + "status": 0, + "executed": 1692784105 + }, + { + "status": 0, + "executed": 1692784405 + }, + { + "status": 0, + "executed": 1692784705 + }, + { + "status": 0, + "executed": 1692785005 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785606 + }, + { + "status": 0, + "executed": 1692785906 + }, + { + "status": 0, + "executed": 1692786207 + }, + { + "status": 0, + "executed": 1692786507 + }, + { + "status": 0, + "executed": 1692786807 + }, + { + "status": 0, + "executed": 1692787107 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787708 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788909 + }, + { + "status": 0, + "executed": 1692789209 + }, + { + "status": 0, + "executed": 1692789509 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3200 ingressOctets=420866003298,egressOctets=13282647819381,ingressErrors=0,egressErrors=0,ingressOctetsv6=63239532634,egressOctetsv6=1772035210,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789509, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "af5e9fbf-15df-4506-9324-0623417e848d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789509 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3202 575", + "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, + "duration": 0.497651198, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3202 ingressOctets=165893803794044,egressOctets=547652391420806,ingressErrors=0,egressErrors=0,ingressOctetsv6=58293552878515,egressOctetsv6=26009479913961,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3202", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c9bfb89-848a-4f05-903c-7714ea9f744e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.3220 624", + "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, + "duration": 0.467908127, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.3220 ingressOctets=188003608,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.3220", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7823331e-3a84-4a8a-a664-eada9b2f34fe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789496 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae12.375 1250", + "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, + "duration": 0.457802903, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae12.375 ingressOctets=34203501590,egressOctets=1952358844,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae12.375", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ca8cace0-3ce2-4f2c-8d8d-1f7acfd066bb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae17 713", + "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, + "duration": 0.664759799, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783844 + }, + { + "status": 0, + "executed": 1692784144 + }, + { + "status": 0, + "executed": 1692784444 + }, + { + "status": 0, + "executed": 1692784744 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786545 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787446 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788047 + }, + { + "status": 0, + "executed": 1692788347 + }, + { + "status": 0, + "executed": 1692788647 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae17 ingressOctets=262672518889231,egressOctets=315195751,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae17", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dc232d7d-abe0-45e7-96a1-127b12278ef6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae17.0 1041", + "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, + "duration": 0.467590424, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785326 + }, + { + "status": 0, + "executed": 1692785627 + }, + { + "status": 0, + "executed": 1692785927 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786828 + }, + { + "status": 0, + "executed": 1692787128 + }, + { + "status": 0, + "executed": 1692787428 + }, + { + "status": 0, + "executed": 1692787729 + }, + { + "status": 0, + "executed": 1692788029 + }, + { + "status": 0, + "executed": 1692788329 + }, + { + "status": 0, + "executed": 1692788629 + }, + { + "status": 0, + "executed": 1692788930 + }, + { + "status": 0, + "executed": 1692789230 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789529, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae17.0 ingressOctets=262670587152528,egressOctets=309733271,ingressErrors=0,egressErrors=0,ingressOctetsv6=40508423583880,egressOctetsv6=63334,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae17.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0c7bd158-9686-484a-9a0d-882c09d49063", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae18 714", + "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, + "duration": 0.525933704, + "executed": 1692789545, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789545 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae18 ingressOctets=264990536247900,egressOctets=42224578425634,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789545, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae18", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c309f80c-93fc-427f-9d2c-bbdbd8fe8380", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789545 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae18.0 1042", + "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, + "duration": 0.447360988, + "executed": 1692789503, + "history": [ + { + "status": 0, + "executed": 1692783499 + }, + { + "status": 0, + "executed": 1692783799 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785000 + }, + { + "status": 0, + "executed": 1692785300 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786201 + }, + { + "status": 0, + "executed": 1692786501 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787402 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788003 + }, + { + "status": 0, + "executed": 1692788303 + }, + { + "status": 0, + "executed": 1692788603 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789503 + } + ], + "issued": 1692789503, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae18.0 ingressOctets=264985932971566,egressOctets=42223881766322,ingressErrors=0,egressErrors=0,ingressOctetsv6=40094385799651,egressOctetsv6=5118146766494,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789503, + "occurrences": 18338, + "occurrences_watermark": 18338, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae18.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1c08b0dd-7ace-488a-af2d-b034b20a82f5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789504 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae2 1190", + "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, + "duration": 0.563668259, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae2 ingressOctets=51151285372842794,egressOctets=32219941896641204,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 18341, + "occurrences_watermark": 18341, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dbef3d00-594a-426f-96eb-5e9ee578241e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae2.0 1191", + "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, + "duration": 0.464275225, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae2.0 ingressOctets=51150890299742628,egressOctets=32219160646642915,ingressErrors=0,egressErrors=0,ingressOctetsv6=10039671607569513,egressOctetsv6=17573863911168,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0c1e01e4-2fa0-4d06-9205-bc1fdf5472b5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae20 716", + "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, + "duration": 0.473804629, + "executed": 1692789557, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789557 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae20 ingressOctets=6995167963773476,egressOctets=4153633086588554,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789557, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae20", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c2fcd69-2492-4089-bade-df088cfb9477", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789557 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae20.0 1019", + "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, + "duration": 0.491201796, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae20.0 ingressOctets=6995088283958646,egressOctets=4153591698402563,ingressErrors=0,egressErrors=0,ingressOctetsv6=78416474005785,egressOctetsv6=71609993033323,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae20.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "85a76397-9663-4bd4-bdc6-6308489c2949", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789504 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae21 717", + "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, + "duration": 0.50985374, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785077 + }, + { + "status": 0, + "executed": 1692785377 + }, + { + "status": 0, + "executed": 1692785677 + }, + { + "status": 0, + "executed": 1692785978 + }, + { + "status": 0, + "executed": 1692786278 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786878 + }, + { + "status": 0, + "executed": 1692787178 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787779 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788680 + }, + { + "status": 0, + "executed": 1692788980 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae21 ingressOctets=3453086743040591,egressOctets=4392903575738757,ingressErrors=440,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1f8f09ce-2ac8-4edc-9e9e-a68c5a7b8fca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae21.100 1092", + "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, + "duration": 0.55675054, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae21.100 ingressOctets=1807631719991697,egressOctets=370798156956364,ingressErrors=0,egressErrors=0,ingressOctetsv6=1486042901104209,egressOctetsv6=12823861648399,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae21.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0a5921a1-7137-48dc-b1b6-a5be40220cec", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae21.333 654", + "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, + "duration": 0.488496918, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783549 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785050 + }, + { + "status": 0, + "executed": 1692785350 + }, + { + "status": 0, + "executed": 1692785650 + }, + { + "status": 0, + "executed": 1692785950 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786550 + }, + { + "status": 0, + "executed": 1692786851 + }, + { + "status": 0, + "executed": 1692787151 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787752 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae21.333 ingressOctets=1645446801296153,egressOctets=4022075617543190,ingressErrors=0,egressErrors=0,ingressOctetsv6=64350096615642,egressOctetsv6=122579074586346,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae21.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "457c607f-7185-4853-a38c-7dba54971fd9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789553 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22 718", + "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, + "duration": 0.695459164, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786244 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae22 ingressOctets=210725300420,egressOctets=7307573911368,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a8bf0ce-cc25-42e1-8a5d-dbd47bdbc187", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22.1 1170", + "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, + "duration": 0.603964187, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae22.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae22.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "226ab90a-ff60-41f2-a059-2dbc810ca757", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22.100 1336", + "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, + "duration": 0.581111675, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae22.100 ingressOctets=162566380571,egressOctets=6995026834316,ingressErrors=0,egressErrors=0,ingressOctetsv6=2511727598,egressOctetsv6=1106362676,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae22.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "71f19bb4-a4f1-4287-b543-07d86e6089bb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22.1200 1441", + "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, + "duration": 0.504002372, + "executed": 1692789557, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789557 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae22.1200 ingressOctets=13675984881,egressOctets=8551451632,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789557, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae22.1200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f6de993-542a-4b73-bdd4-e6af10f78e87", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789557 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22.2033 981", + "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, + "duration": 0.734614028, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae22.2033 ingressOctets=12533339101,egressOctets=74120956652,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae22.2033", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d3db85d9-c0b5-47e3-b19b-b0b8eacaa4a0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae22.602 1232", + "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, + "duration": 0.512436811, + "executed": 1692789511, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784107 + }, + { + "status": 0, + "executed": 1692784407 + }, + { + "status": 0, + "executed": 1692784707 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785608 + }, + { + "status": 0, + "executed": 1692785908 + }, + { + "status": 0, + "executed": 1692786209 + }, + { + "status": 0, + "executed": 1692786509 + }, + { + "status": 0, + "executed": 1692786809 + }, + { + "status": 0, + "executed": 1692787109 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787710 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788911 + }, + { + "status": 0, + "executed": 1692789211 + }, + { + "status": 0, + "executed": 1692789511 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae22.602 ingressOctets=21949468588,egressOctets=229888687512,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789511, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae22.602", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "357d926a-f58b-4cc0-a794-8bf6bb8d9468", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789511 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae23 719", + "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, + "duration": 0.472280507, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783851 + }, + { + "status": 0, + "executed": 1692784151 + }, + { + "status": 0, + "executed": 1692784451 + }, + { + "status": 0, + "executed": 1692784751 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786252 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787453 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788054 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788654 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789554, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae23 ingressOctets=417180918033,egressOctets=13665308317608,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 18118, + "occurrences_watermark": 18118, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b6fe9a53-14b1-4616-8685-341bba4a9495", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae23.10 932", + "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, + "duration": 0.501264105, + "executed": 1692789489, + "history": [ + { + "status": 0, + "executed": 1692783485 + }, + { + "status": 0, + "executed": 1692783785 + }, + { + "status": 0, + "executed": 1692784086 + }, + { + "status": 0, + "executed": 1692784386 + }, + { + "status": 0, + "executed": 1692784686 + }, + { + "status": 0, + "executed": 1692784986 + }, + { + "status": 0, + "executed": 1692785286 + }, + { + "status": 0, + "executed": 1692785587 + }, + { + "status": 0, + "executed": 1692785887 + }, + { + "status": 0, + "executed": 1692786187 + }, + { + "status": 0, + "executed": 1692786487 + }, + { + "status": 0, + "executed": 1692786788 + }, + { + "status": 0, + "executed": 1692787088 + }, + { + "status": 0, + "executed": 1692787388 + }, + { + "status": 0, + "executed": 1692787689 + }, + { + "status": 0, + "executed": 1692787989 + }, + { + "status": 0, + "executed": 1692788289 + }, + { + "status": 0, + "executed": 1692788589 + }, + { + "status": 0, + "executed": 1692788890 + }, + { + "status": 0, + "executed": 1692789190 + }, + { + "status": 0, + "executed": 1692789489 + } + ], + "issued": 1692789489, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae23.10 ingressOctets=5918260323,egressOctets=1932135179,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789489, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae23.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2671c2b7-3808-46a1-88ca-b6813bc67608", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789490 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae23.11 1015", + "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, + "duration": 0.649720942, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783844 + }, + { + "status": 0, + "executed": 1692784144 + }, + { + "status": 0, + "executed": 1692784444 + }, + { + "status": 0, + "executed": 1692784744 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786545 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787446 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788047 + }, + { + "status": 0, + "executed": 1692788347 + }, + { + "status": 0, + "executed": 1692788647 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae23.11 ingressOctets=5223435796,egressOctets=1017099852,ingressErrors=0,egressErrors=0,ingressOctetsv6=21652300,egressOctetsv6=9616096,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae23.11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6a961157-6334-4269-a503-e5f2cdba7b06", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae23.12 1027", + "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, + "duration": 0.462952983, + "executed": 1692789516, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785613 + }, + { + "status": 0, + "executed": 1692785913 + }, + { + "status": 0, + "executed": 1692786214 + }, + { + "status": 0, + "executed": 1692786514 + }, + { + "status": 0, + "executed": 1692786814 + }, + { + "status": 0, + "executed": 1692787114 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787715 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788916 + }, + { + "status": 0, + "executed": 1692789216 + }, + { + "status": 0, + "executed": 1692789516 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae23.12 ingressOctets=3901570,egressOctets=10758018338792,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789516, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae23.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "802957e6-cd31-487e-ad0e-1417c5b68593", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae23.13 1018", + "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, + "duration": 0.526944283, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae23.13 ingressOctets=76155110,egressOctets=89158789,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae23.13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1ec7a461-2830-4d77-ba04-da2506c58d39", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae23.46 947", + "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, + "duration": 0.501509979, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785982 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787182 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789584, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae23.46 ingressOctets=332834579951,egressOctets=2900154642035,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 18335, + "occurrences_watermark": 18335, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae23.46", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d27af655-dbbe-4160-aa66-8d58bb36f284", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae23.991 918", + "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, + "duration": 0.542237256, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae23.991 ingressOctets=71589857948,egressOctets=3753319103,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae23.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cab9a03a-49ac-41b9-9bb8-71a759fb8523", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae24 720", + "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, + "duration": 0.750794485, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783843 + }, + { + "status": 0, + "executed": 1692784143 + }, + { + "status": 0, + "executed": 1692784443 + }, + { + "status": 0, + "executed": 1692784743 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786244 + }, + { + "status": 0, + "executed": 1692786544 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787445 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788046 + }, + { + "status": 0, + "executed": 1692788346 + }, + { + "status": 0, + "executed": 1692788646 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae24 ingressOctets=49951177353936,egressOctets=17145552072486,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae24", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7a5bdc25-f6e9-4fda-ae6c-6194a9a81178", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae24.0 976", + "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, + "duration": 0.466144462, + "executed": 1692789583, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789583 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae24.0 ingressOctets=49951894889509,egressOctets=17145771640663,ingressErrors=0,egressErrors=0,ingressOctetsv6=56355071815,egressOctetsv6=2664434231058,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789583, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae24.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ad91f3b4-a371-4174-9d7c-7968c31b152b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae25 617", + "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, + "duration": 0.521356956, + "executed": 1692789504, + "history": [ + { + "status": 0, + "executed": 1692783500 + }, + { + "status": 0, + "executed": 1692783800 + }, + { + "status": 0, + "executed": 1692784100 + }, + { + "status": 0, + "executed": 1692784400 + }, + { + "status": 0, + "executed": 1692784700 + }, + { + "status": 0, + "executed": 1692785001 + }, + { + "status": 0, + "executed": 1692785301 + }, + { + "status": 0, + "executed": 1692785601 + }, + { + "status": 0, + "executed": 1692785901 + }, + { + "status": 0, + "executed": 1692786202 + }, + { + "status": 0, + "executed": 1692786502 + }, + { + "status": 0, + "executed": 1692786802 + }, + { + "status": 0, + "executed": 1692787102 + }, + { + "status": 0, + "executed": 1692787403 + }, + { + "status": 0, + "executed": 1692787703 + }, + { + "status": 0, + "executed": 1692788004 + }, + { + "status": 0, + "executed": 1692788304 + }, + { + "status": 0, + "executed": 1692788604 + }, + { + "status": 0, + "executed": 1692788904 + }, + { + "status": 0, + "executed": 1692789204 + }, + { + "status": 0, + "executed": 1692789504 + } + ], + "issued": 1692789504, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae25 ingressOctets=147972329659,egressOctets=934792243827,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789504, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0024e1b6-62a1-4dca-9b71-b8fb802e3e43", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789504 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae25.0 633", + "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, + "duration": 0.445584736, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae25.0 ingressOctets=147973141167,egressOctets=934784344775,ingressErrors=0,egressErrors=0,ingressOctetsv6=50400727,egressOctetsv6=3515892,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae25.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ce9f5b8c-2cf7-4baf-a629-13b44a52169d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789538 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26 722", + "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, + "duration": 0.513358189, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785982 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787182 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789584, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26 ingressOctets=4303807077586097,egressOctets=4958979680125385,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=1062832\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ab1cbdc8-5a9b-410d-ade4-84123d7ea7c5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.1 1158", + "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, + "duration": 0.54241789, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1cebe240-dd09-45a1-bde1-2f9ea6b3cb0f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.1200 805", + "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, + "duration": 0.67595038, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786244 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.1200 ingressOctets=8551441108,egressOctets=13675929167,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.1200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "180d8a22-2d90-4024-ad02-4c5e6c3bd762", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.2002 869", + "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, + "duration": 0.483986133, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783498 + }, + { + "status": 0, + "executed": 1692783798 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692784999 + }, + { + "status": 0, + "executed": 1692785299 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786200 + }, + { + "status": 0, + "executed": 1692786500 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787401 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788002 + }, + { + "status": 0, + "executed": 1692788302 + }, + { + "status": 0, + "executed": 1692788602 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.2002 ingressOctets=2765443398378,egressOctets=26373277527598,ingressErrors=0,egressErrors=0,ingressOctetsv6=1883191726471,egressOctetsv6=458780534764,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.2002", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f525972-9629-4bf8-b429-30511d19e92d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.2013 877", + "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, + "duration": 0.523034735, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.2013 ingressOctets=247232673466,egressOctets=808907009190342,ingressErrors=0,egressErrors=0,ingressOctetsv6=227864523689,egressOctetsv6=557195798258236,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.2013", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ed6abf74-2fc0-4486-b777-901ff05c107e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.202 836", + "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, + "duration": 0.553248093, + "executed": 1692789535, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786533 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787434 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788035 + }, + { + "status": 0, + "executed": 1692788335 + }, + { + "status": 0, + "executed": 1692788635 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789535 + } + ], + "issued": 1692789535, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.202 ingressOctets=107307035269,egressOctets=239928288493345,ingressErrors=0,egressErrors=0,ingressOctetsv6=106043091,egressOctetsv6=126892275292377,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789535, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.202", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d1aa4b11-c81b-4b81-b6d1-5b8dfe41713b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789536 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.203 854", + "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, + "duration": 0.47223753, + "executed": 1692789545, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789545 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.203 ingressOctets=5787215636,egressOctets=6416418024,ingressErrors=0,egressErrors=0,ingressOctetsv6=5601553753,egressOctetsv6=5966235890,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789545, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.203", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ba1513c6-62d7-4465-91e1-f99c4a6e5c9f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789545 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.204 862", + "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, + "duration": 0.530558423, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.204 ingressOctets=200219753226305,egressOctets=380091799996017,ingressErrors=0,egressErrors=0,ingressOctetsv6=70616945,egressOctetsv6=123790519755,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.204", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4064261d-19b3-4c35-9d7e-166e654872df", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.2050 1147", + "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, + "duration": 0.480971145, + "executed": 1692789511, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784108 + }, + { + "status": 0, + "executed": 1692784408 + }, + { + "status": 0, + "executed": 1692784708 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785609 + }, + { + "status": 0, + "executed": 1692785909 + }, + { + "status": 0, + "executed": 1692786209 + }, + { + "status": 0, + "executed": 1692786509 + }, + { + "status": 0, + "executed": 1692786810 + }, + { + "status": 0, + "executed": 1692787110 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787711 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788912 + }, + { + "status": 0, + "executed": 1692789212 + }, + { + "status": 0, + "executed": 1692789511 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.2050 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789511, + "occurrences": 18337, + "occurrences_watermark": 18337, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.2050", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f586627e-96ce-4853-a460-13e157049b96", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789512 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.2110 827", + "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, + "duration": 0.768328597, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.2110 ingressOctets=43093388869,egressOctets=528778776,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.2110", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "18c7e11d-9f20-410e-931e-c2df36c6a2b4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.401 797", + "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, + "duration": 0.65673448, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783545 + }, + { + "status": 0, + "executed": 1692783846 + }, + { + "status": 0, + "executed": 1692784146 + }, + { + "status": 0, + "executed": 1692784446 + }, + { + "status": 0, + "executed": 1692784746 + }, + { + "status": 0, + "executed": 1692785046 + }, + { + "status": 0, + "executed": 1692785346 + }, + { + "status": 0, + "executed": 1692785646 + }, + { + "status": 0, + "executed": 1692785946 + }, + { + "status": 0, + "executed": 1692786247 + }, + { + "status": 0, + "executed": 1692786547 + }, + { + "status": 0, + "executed": 1692786847 + }, + { + "status": 0, + "executed": 1692787147 + }, + { + "status": 0, + "executed": 1692787448 + }, + { + "status": 0, + "executed": 1692787748 + }, + { + "status": 0, + "executed": 1692788049 + }, + { + "status": 0, + "executed": 1692788349 + }, + { + "status": 0, + "executed": 1692788649 + }, + { + "status": 0, + "executed": 1692788949 + }, + { + "status": 0, + "executed": 1692789249 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.401 ingressOctets=272243857053,egressOctets=1449198353,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 18118, + "occurrences_watermark": 18118, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.401", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "df33b43d-156a-4b8c-be5d-47afbde13ea9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.402 819", + "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, + "duration": 0.427104354, + "executed": 1692789588, + "history": [ + { + "status": 0, + "executed": 1692783583 + }, + { + "status": 0, + "executed": 1692783883 + }, + { + "status": 0, + "executed": 1692784183 + }, + { + "status": 0, + "executed": 1692784483 + }, + { + "status": 0, + "executed": 1692784783 + }, + { + "status": 0, + "executed": 1692785084 + }, + { + "status": 0, + "executed": 1692785384 + }, + { + "status": 0, + "executed": 1692785684 + }, + { + "status": 0, + "executed": 1692785985 + }, + { + "status": 0, + "executed": 1692786285 + }, + { + "status": 0, + "executed": 1692786584 + }, + { + "status": 0, + "executed": 1692786885 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787486 + }, + { + "status": 0, + "executed": 1692787787 + }, + { + "status": 0, + "executed": 1692788087 + }, + { + "status": 0, + "executed": 1692788387 + }, + { + "status": 0, + "executed": 1692788688 + }, + { + "status": 0, + "executed": 1692788988 + }, + { + "status": 0, + "executed": 1692789288 + }, + { + "status": 0, + "executed": 1692789588 + } + ], + "issued": 1692789588, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.402 ingressOctets=95141314,egressOctets=46684683321,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789588, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.402", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6fde3a48-0d62-4e51-bc7f-3ff20c5a475e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789588 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.411 803", + "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, + "duration": 0.538061165, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.411 ingressOctets=3395673531912723,egressOctets=3280754303264796,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 18114, + "occurrences_watermark": 18114, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.411", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a6feb4cc-13f6-40e7-9afc-bd338137e2e5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.420 789", + "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, + "duration": 0.467278696, + "executed": 1692789507, + "history": [ + { + "status": 0, + "executed": 1692783503 + }, + { + "status": 0, + "executed": 1692783803 + }, + { + "status": 0, + "executed": 1692784103 + }, + { + "status": 0, + "executed": 1692784403 + }, + { + "status": 0, + "executed": 1692784703 + }, + { + "status": 0, + "executed": 1692785004 + }, + { + "status": 0, + "executed": 1692785304 + }, + { + "status": 0, + "executed": 1692785604 + }, + { + "status": 0, + "executed": 1692785904 + }, + { + "status": 0, + "executed": 1692786205 + }, + { + "status": 0, + "executed": 1692786505 + }, + { + "status": 0, + "executed": 1692786805 + }, + { + "status": 0, + "executed": 1692787105 + }, + { + "status": 0, + "executed": 1692787406 + }, + { + "status": 0, + "executed": 1692787706 + }, + { + "status": 0, + "executed": 1692788007 + }, + { + "status": 0, + "executed": 1692788307 + }, + { + "status": 0, + "executed": 1692788607 + }, + { + "status": 0, + "executed": 1692788907 + }, + { + "status": 0, + "executed": 1692789207 + }, + { + "status": 0, + "executed": 1692789507 + } + ], + "issued": 1692789507, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.420 ingressOctets=1727392633220,egressOctets=437332294463,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789507, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.420", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e60c68ab-97d0-4cce-94c4-b9bd310894d3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789507 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.500 1002", + "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, + "duration": 0.509495021, + "executed": 1692789557, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789557 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.500 ingressOctets=127345859354,egressOctets=11855222786,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789557, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.500", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "46b54a2a-901b-4d48-a7ca-760164214888", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.518 811", + "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, + "duration": 0.781888988, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.518 ingressOctets=275576317438,egressOctets=1942745834853,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.518", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0c17ba85-65c0-4da2-9ddf-4159030c3ea2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.519 826", + "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, + "duration": 0.499740649, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783568 + }, + { + "status": 0, + "executed": 1692783868 + }, + { + "status": 0, + "executed": 1692784168 + }, + { + "status": 0, + "executed": 1692784468 + }, + { + "status": 0, + "executed": 1692784768 + }, + { + "status": 0, + "executed": 1692785068 + }, + { + "status": 0, + "executed": 1692785368 + }, + { + "status": 0, + "executed": 1692785668 + }, + { + "status": 0, + "executed": 1692785969 + }, + { + "status": 0, + "executed": 1692786269 + }, + { + "status": 0, + "executed": 1692786569 + }, + { + "status": 0, + "executed": 1692786869 + }, + { + "status": 0, + "executed": 1692787169 + }, + { + "status": 0, + "executed": 1692787470 + }, + { + "status": 0, + "executed": 1692787770 + }, + { + "status": 0, + "executed": 1692788071 + }, + { + "status": 0, + "executed": 1692788371 + }, + { + "status": 0, + "executed": 1692788671 + }, + { + "status": 0, + "executed": 1692788971 + }, + { + "status": 0, + "executed": 1692789272 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.519 ingressOctets=28641117655,egressOctets=846377972,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 18338, + "occurrences_watermark": 18338, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.519", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "219c5682-23c8-4de0-b2db-27dfaabd011d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.611 866", + "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, + "duration": 0.455676705, + "executed": 1692789595, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784791 + }, + { + "status": 0, + "executed": 1692785091 + }, + { + "status": 0, + "executed": 1692785391 + }, + { + "status": 0, + "executed": 1692785691 + }, + { + "status": 0, + "executed": 1692785992 + }, + { + "status": 0, + "executed": 1692786292 + }, + { + "status": 0, + "executed": 1692786592 + }, + { + "status": 0, + "executed": 1692786892 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787793 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788694 + }, + { + "status": 0, + "executed": 1692788994 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789595 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.611 ingressOctets=8962341789,egressOctets=349974498,ingressErrors=0,egressErrors=0,ingressOctetsv6=45390684,egressOctetsv6=40323,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789595, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.611", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2dee3651-cdc6-4ddc-a1f0-5cb2e77f2ad9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789595 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.70 810", + "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, + "duration": 0.432796696, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785499 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789102 + }, + { + "status": 0, + "executed": 1692789402 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.70 ingressOctets=692093456669785,egressOctets=194594302931680,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 18354, + "occurrences_watermark": 18354, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.70", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c616c063-9ef8-4e8e-ae17-852d29493e1f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789703 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.801 804", + "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, + "duration": 0.655434328, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.801 ingressOctets=4522511121870,egressOctets=3024166530755,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.801", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "df6b6b54-e5ab-4f8f-9481-f7b934687833", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.802 823", + "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, + "duration": 0.573255755, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784617 + }, + { + "status": 0, + "executed": 1692784917 + }, + { + "status": 0, + "executed": 1692785217 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787319 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.802 ingressOctets=5669360970338,egressOctets=22847604727626,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 18354, + "occurrences_watermark": 18354, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.802", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "857b001b-a16c-41e1-a6c3-4a65b39ca0f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae26.904 832", + "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, + "duration": 0.446194463, + "executed": 1692789701, + "history": [ + { + "status": 0, + "executed": 1692783697 + }, + { + "status": 0, + "executed": 1692783997 + }, + { + "status": 0, + "executed": 1692784297 + }, + { + "status": 0, + "executed": 1692784598 + }, + { + "status": 0, + "executed": 1692784898 + }, + { + "status": 0, + "executed": 1692785198 + }, + { + "status": 0, + "executed": 1692785498 + }, + { + "status": 0, + "executed": 1692785798 + }, + { + "status": 0, + "executed": 1692786099 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692786999 + }, + { + "status": 0, + "executed": 1692787299 + }, + { + "status": 0, + "executed": 1692787599 + }, + { + "status": 0, + "executed": 1692787899 + }, + { + "status": 0, + "executed": 1692788200 + }, + { + "status": 0, + "executed": 1692788500 + }, + { + "status": 0, + "executed": 1692788800 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789701 + } + ], + "issued": 1692789700, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae26.904 ingressOctets=0,egressOctets=1048,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789701, + "occurrences": 18120, + "occurrences_watermark": 18120, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae26.904", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6edd3082-4255-4f97-919e-14435542cf6b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae27 723", + "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, + "duration": 0.431519161, + "executed": 1692789700, + "history": [ + { + "status": 0, + "executed": 1692783696 + }, + { + "status": 0, + "executed": 1692783997 + }, + { + "status": 0, + "executed": 1692784297 + }, + { + "status": 0, + "executed": 1692784597 + }, + { + "status": 0, + "executed": 1692784897 + }, + { + "status": 0, + "executed": 1692785197 + }, + { + "status": 0, + "executed": 1692785497 + }, + { + "status": 0, + "executed": 1692785798 + }, + { + "status": 0, + "executed": 1692786098 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786698 + }, + { + "status": 0, + "executed": 1692786998 + }, + { + "status": 0, + "executed": 1692787299 + }, + { + "status": 0, + "executed": 1692787599 + }, + { + "status": 0, + "executed": 1692787899 + }, + { + "status": 0, + "executed": 1692788199 + }, + { + "status": 0, + "executed": 1692788499 + }, + { + "status": 0, + "executed": 1692788800 + }, + { + "status": 0, + "executed": 1692789100 + }, + { + "status": 0, + "executed": 1692789400 + }, + { + "status": 0, + "executed": 1692789700 + } + ], + "issued": 1692789699, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae27 ingressOctets=140157785971,egressOctets=744227670370,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789700, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae27", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "01a54763-7956-41fd-a653-8e1a7c46bb5c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789700 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae27.1 1171", + "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, + "duration": 0.456836111, + "executed": 1692789710, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789710 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae27.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789710, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae27.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "72022ff9-b90f-4847-affb-c9776e77944f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae27.100 935", + "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, + "duration": 0.426697277, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788819 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789719, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae27.100 ingressOctets=10835383493,egressOctets=91592551217,ingressErrors=0,egressErrors=0,ingressOctetsv6=124363937,egressOctetsv6=440770,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae27.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "605a32d3-6969-4dbb-b22d-d54090cf3ec3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789720 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae27.101 968", + "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, + "duration": 0.606995147, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783514 + }, + { + "status": 0, + "executed": 1692783814 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785015 + }, + { + "status": 0, + "executed": 1692785315 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787417 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788018 + }, + { + "status": 0, + "executed": 1692788318 + }, + { + "status": 0, + "executed": 1692788618 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789522, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae27.101 ingressOctets=127792612967,egressOctets=649449377967,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae27.101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c0ba2a5a-2557-4471-9af2-18392929f537", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789523 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae27.102 588", + "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, + "duration": 0.452911159, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783835 + }, + { + "status": 0, + "executed": 1692784135 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785036 + }, + { + "status": 0, + "executed": 1692785336 + }, + { + "status": 0, + "executed": 1692785636 + }, + { + "status": 0, + "executed": 1692785936 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786537 + }, + { + "status": 0, + "executed": 1692786837 + }, + { + "status": 0, + "executed": 1692787137 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787738 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789239 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae27.102 ingressOctets=1525148027,egressOctets=3040070412,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae27.102", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b8d6f072-37b1-4a12-9a5d-9efc8b67ea2a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28 724", + "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, + "duration": 0.473167891, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28 ingressOctets=170534590335140,egressOctets=63695207666023,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6823651b-6d9d-4cc7-bea4-2e13f5fe5bd3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28.1 1173", + "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, + "duration": 0.48064879, + "executed": 1692789489, + "history": [ + { + "status": 0, + "executed": 1692783485 + }, + { + "status": 0, + "executed": 1692783785 + }, + { + "status": 0, + "executed": 1692784086 + }, + { + "status": 0, + "executed": 1692784386 + }, + { + "status": 0, + "executed": 1692784686 + }, + { + "status": 0, + "executed": 1692784986 + }, + { + "status": 0, + "executed": 1692785286 + }, + { + "status": 0, + "executed": 1692785587 + }, + { + "status": 0, + "executed": 1692785887 + }, + { + "status": 0, + "executed": 1692786187 + }, + { + "status": 0, + "executed": 1692786487 + }, + { + "status": 0, + "executed": 1692786788 + }, + { + "status": 0, + "executed": 1692787088 + }, + { + "status": 0, + "executed": 1692787388 + }, + { + "status": 0, + "executed": 1692787689 + }, + { + "status": 0, + "executed": 1692787989 + }, + { + "status": 0, + "executed": 1692788289 + }, + { + "status": 0, + "executed": 1692788589 + }, + { + "status": 0, + "executed": 1692788890 + }, + { + "status": 0, + "executed": 1692789190 + }, + { + "status": 0, + "executed": 1692789489 + } + ], + "issued": 1692789489, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789489, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0a7e8a77-644d-4118-a04d-9f0a6ade8c0d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789490 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28.100 1007", + "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, + "duration": 0.465148576, + "executed": 1692789476, + "history": [ + { + "status": 0, + "executed": 1692783471 + }, + { + "status": 0, + "executed": 1692783771 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784373 + }, + { + "status": 0, + "executed": 1692784673 + }, + { + "status": 0, + "executed": 1692784973 + }, + { + "status": 0, + "executed": 1692785273 + }, + { + "status": 0, + "executed": 1692785574 + }, + { + "status": 0, + "executed": 1692785874 + }, + { + "status": 0, + "executed": 1692786174 + }, + { + "status": 0, + "executed": 1692786474 + }, + { + "status": 0, + "executed": 1692786775 + }, + { + "status": 0, + "executed": 1692787075 + }, + { + "status": 0, + "executed": 1692787375 + }, + { + "status": 0, + "executed": 1692787676 + }, + { + "status": 0, + "executed": 1692787976 + }, + { + "status": 0, + "executed": 1692788276 + }, + { + "status": 0, + "executed": 1692788576 + }, + { + "status": 0, + "executed": 1692788877 + }, + { + "status": 0, + "executed": 1692789177 + }, + { + "status": 0, + "executed": 1692789476 + } + ], + "issued": 1692789476, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28.100 ingressOctets=163867737815757,egressOctets=57129895668304,ingressErrors=0,egressErrors=0,ingressOctetsv6=25118139709,egressOctetsv6=465319591780,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789476, + "occurrences": 18339, + "occurrences_watermark": 18339, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3900d93c-8a71-4da9-9ba4-7ef91061f796", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789477 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28.200 629", + "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, + "duration": 0.471598967, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28.200 ingressOctets=2005609876317,egressOctets=148701640902,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "84989c2f-5b49-45f7-8280-9c5a6fdc0864", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28.201 644", + "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, + "duration": 2.644501172, + "executed": 1692789521, + "history": [ + { + "status": 0, + "executed": 1692783514 + }, + { + "status": 0, + "executed": 1692783814 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785015 + }, + { + "status": 0, + "executed": 1692785315 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787417 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788018 + }, + { + "status": 0, + "executed": 1692788318 + }, + { + "status": 0, + "executed": 1692788618 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789521 + } + ], + "issued": 1692789521, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28.201 ingressOctets=4219255384792,egressOctets=4671605379905,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789521, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28.201", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c08d6f85-f8a1-49c7-8001-3fec0fe04a72", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28.2061 1216", + "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, + "duration": 0.527950697, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783835 + }, + { + "status": 0, + "executed": 1692784135 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785036 + }, + { + "status": 0, + "executed": 1692785336 + }, + { + "status": 0, + "executed": 1692785636 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786537 + }, + { + "status": 0, + "executed": 1692786837 + }, + { + "status": 0, + "executed": 1692787137 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787738 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789239 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28.2061 ingressOctets=2388936259,egressOctets=6064575681,ingressErrors=0,egressErrors=0,ingressOctetsv6=1890535413,egressOctetsv6=5562562444,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28.2061", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7959160e-d93d-41c2-87a1-69c35c50046f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28.2062 1230", + "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, + "duration": 0.47136787, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783668 + }, + { + "status": 0, + "executed": 1692783968 + }, + { + "status": 0, + "executed": 1692784268 + }, + { + "status": 0, + "executed": 1692784569 + }, + { + "status": 0, + "executed": 1692784869 + }, + { + "status": 0, + "executed": 1692785169 + }, + { + "status": 0, + "executed": 1692785469 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786970 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787571 + }, + { + "status": 0, + "executed": 1692787871 + }, + { + "status": 0, + "executed": 1692788171 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789072 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789672, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28.2062 ingressOctets=61096267,egressOctets=196538070,ingressErrors=0,egressErrors=0,ingressOctetsv6=38410121,egressOctetsv6=128588417,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28.2062", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "97465ca1-74e7-4fdc-929a-08a6dda502e3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789673 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28.2063 1244", + "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, + "duration": 0.618514017, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783990 + }, + { + "status": 0, + "executed": 1692784290 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786092 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786692 + }, + { + "status": 0, + "executed": 1692786992 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28.2063 ingressOctets=55011107,egressOctets=66264752,ingressErrors=0,egressErrors=0,ingressOctetsv6=35662977,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28.2063", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e6993dff-a36a-4716-9c46-b074eefaa9d8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28.220 646", + "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, + "duration": 0.4673672, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783663 + }, + { + "status": 0, + "executed": 1692783963 + }, + { + "status": 0, + "executed": 1692784263 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785764 + }, + { + "status": 0, + "executed": 1692786064 + }, + { + "status": 0, + "executed": 1692786364 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787265 + }, + { + "status": 0, + "executed": 1692787565 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788466 + }, + { + "status": 0, + "executed": 1692788766 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789367 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28.220 ingressOctets=142140105,egressOctets=491910379,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28.220", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "56c03878-d793-4ff5-bc41-b6c94053f654", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28.240 681", + "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, + "duration": 0.564731963, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28.240 ingressOctets=1283117491,egressOctets=9838155074,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28.240", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ceeb13cb-f6a0-4317-a625-d1a34b387701", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae28.420 694", + "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, + "duration": 0.54116951, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae28.420 ingressOctets=437332332817,egressOctets=1727392668864,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae28.420", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ba7dabf-95fb-4f17-93ec-d8e4c1c9cf7d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae3 1157", + "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, + "duration": 0.473531949, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783549 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785050 + }, + { + "status": 0, + "executed": 1692785350 + }, + { + "status": 0, + "executed": 1692785650 + }, + { + "status": 0, + "executed": 1692785950 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786550 + }, + { + "status": 0, + "executed": 1692786851 + }, + { + "status": 0, + "executed": 1692787151 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787752 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae3 ingressOctets=9388270145737593,egressOctets=10341073148856615,ingressErrors=2,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4f2d33dc-a626-44cf-a06c-2bc61fb8beb2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789553 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae3.0 1163", + "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, + "duration": 0.530316913, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae3.0 ingressOctets=9388285301238572,egressOctets=10341115123469519,ingressErrors=0,egressErrors=0,ingressOctetsv6=3336161353470675,egressOctetsv6=2769232681977547,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e8484e0e-fb37-45fa-8385-6f8012ec3615", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae5 613", + "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, + "duration": 0.511577322, + "executed": 1692789545, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789545 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae5 ingressOctets=307874769641077,egressOctets=222295397604975,ingressErrors=2,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789545, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d9426a19-a783-4088-93ed-b4d5308f1185", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789545 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae5.0 667", + "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, + "duration": 0.419849326, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784576 + }, + { + "status": 0, + "executed": 1692784876 + }, + { + "status": 0, + "executed": 1692785176 + }, + { + "status": 0, + "executed": 1692785476 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786077 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786977 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787578 + }, + { + "status": 0, + "executed": 1692787878 + }, + { + "status": 0, + "executed": 1692788178 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788779 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789679, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae5.0 ingressOctets=307885611471910,egressOctets=222334485041675,ingressErrors=0,egressErrors=0,ingressOctetsv6=1235581253146,egressOctetsv6=3485336617,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "51811c14-1201-4a53-a7e0-eb033cc99ded", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae8 704", + "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, + "duration": 0.790667553, + "executed": 1692789618, + "history": [ + { + "status": 0, + "executed": 1692783613 + }, + { + "status": 0, + "executed": 1692783913 + }, + { + "status": 0, + "executed": 1692784213 + }, + { + "status": 0, + "executed": 1692784513 + }, + { + "status": 0, + "executed": 1692784813 + }, + { + "status": 0, + "executed": 1692785113 + }, + { + "status": 0, + "executed": 1692785413 + }, + { + "status": 0, + "executed": 1692785713 + }, + { + "status": 0, + "executed": 1692786014 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786615 + }, + { + "status": 0, + "executed": 1692786915 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787816 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788417 + }, + { + "status": 0, + "executed": 1692788717 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789318 + }, + { + "status": 0, + "executed": 1692789618 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae8 ingressOctets=200531900230,egressOctets=35722398325,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789618, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "07657767-0a53-4f50-919b-b3f4b4103b13", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789619 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae8.0 1428", + "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, + "duration": 0.482931448, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783548 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785049 + }, + { + "status": 0, + "executed": 1692785349 + }, + { + "status": 0, + "executed": 1692785649 + }, + { + "status": 0, + "executed": 1692785949 + }, + { + "status": 0, + "executed": 1692786249 + }, + { + "status": 0, + "executed": 1692786550 + }, + { + "status": 0, + "executed": 1692786850 + }, + { + "status": 0, + "executed": 1692787150 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787751 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae8.0 ingressOctets=200456416813,egressOctets=35629336737,ingressErrors=0,egressErrors=0,ingressOctetsv6=250859990,egressOctetsv6=216691921,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae8.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "28314c80-8ef9-46c7-af3c-4576dbe4200c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae9 705", + "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, + "duration": 0.484893148, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783851 + }, + { + "status": 0, + "executed": 1692784151 + }, + { + "status": 0, + "executed": 1692784451 + }, + { + "status": 0, + "executed": 1692784751 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787453 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788054 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788654 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789554, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae9 ingressOctets=12095929661225084,egressOctets=23303840918405932,ingressErrors=2,egressErrors=8,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e72089f4-6e88-4616-8db3-c700998781ab", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789555 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ae9.0 1675", + "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, + "duration": 0.487296877, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784567 + }, + { + "status": 0, + "executed": 1692784867 + }, + { + "status": 0, + "executed": 1692785167 + }, + { + "status": 0, + "executed": 1692785467 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786368 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786968 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787569 + }, + { + "status": 0, + "executed": 1692787869 + }, + { + "status": 0, + "executed": 1692788169 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789070 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789670, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ae9.0 ingressOctets=12096170698322615,egressOctets=23304302680749697,ingressErrors=0,egressErrors=0,ingressOctetsv6=2200751216260079,egressOctetsv6=2427522108225911,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ae9.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "86b5b1b9-baaa-416a-9970-037e02292131", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789671 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/1/0 851", + "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, + "duration": 0.469919087, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783663 + }, + { + "status": 0, + "executed": 1692783963 + }, + { + "status": 0, + "executed": 1692784263 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785764 + }, + { + "status": 0, + "executed": 1692786064 + }, + { + "status": 0, + "executed": 1692786364 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787265 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788466 + }, + { + "status": 0, + "executed": 1692788766 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789367 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-1/1/0 ingressOctets=4303852374630006,egressOctets=4959051296278362,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=1062832\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "373758d3-3408-408c-86fb-57f60bfec6dc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/3/0 1055", + "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, + "duration": 0.460678905, + "executed": 1692789613, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784809 + }, + { + "status": 0, + "executed": 1692785109 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789613 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-1/3/0 ingressOctets=854497988625219,egressOctets=119852662482687,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789613, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a221b67c-df0c-421e-b5ef-df02e92a625a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/3/0.1 1169", + "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, + "duration": 0.468776339, + "executed": 1692789662, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784559 + }, + { + "status": 0, + "executed": 1692784859 + }, + { + "status": 0, + "executed": 1692785159 + }, + { + "status": 0, + "executed": 1692785459 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786360 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786960 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787561 + }, + { + "status": 0, + "executed": 1692787861 + }, + { + "status": 0, + "executed": 1692788161 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789062 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789662 + } + ], + "issued": 1692789662, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-1/3/0.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789662, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-1-3-0.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c286f322-e14d-496b-958e-1d9f3156c620", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/3/0.2100 662", + "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, + "duration": 0.494556192, + "executed": 1692789597, + "history": [ + { + "status": 0, + "executed": 1692783593 + }, + { + "status": 0, + "executed": 1692783893 + }, + { + "status": 0, + "executed": 1692784193 + }, + { + "status": 0, + "executed": 1692784493 + }, + { + "status": 0, + "executed": 1692784793 + }, + { + "status": 0, + "executed": 1692785093 + }, + { + "status": 0, + "executed": 1692785393 + }, + { + "status": 0, + "executed": 1692785693 + }, + { + "status": 0, + "executed": 1692785994 + }, + { + "status": 0, + "executed": 1692786294 + }, + { + "status": 0, + "executed": 1692786594 + }, + { + "status": 0, + "executed": 1692786894 + }, + { + "status": 0, + "executed": 1692787195 + }, + { + "status": 0, + "executed": 1692787495 + }, + { + "status": 0, + "executed": 1692787795 + }, + { + "status": 0, + "executed": 1692788096 + }, + { + "status": 0, + "executed": 1692788396 + }, + { + "status": 0, + "executed": 1692788696 + }, + { + "status": 0, + "executed": 1692788996 + }, + { + "status": 0, + "executed": 1692789297 + }, + { + "status": 0, + "executed": 1692789597 + } + ], + "issued": 1692789597, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-1/3/0.2100 ingressOctets=61263788055,egressOctets=17154032535814,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789597, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-1-3-0.2100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0f8122f5-2086-4044-84a2-c7bb25fbad85", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789597 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/3/0.3101 1141", + "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, + "duration": 0.455895838, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-1/3/0.3101 ingressOctets=5574561445505,egressOctets=71266957049,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-1-3-0.3101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fccfd370-e8b4-41b9-bec4-912162a73b67", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/3/0.3104 991", + "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, + "duration": 0.481254086, + "executed": 1692789581, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785377 + }, + { + "status": 0, + "executed": 1692785677 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786578 + }, + { + "status": 0, + "executed": 1692786878 + }, + { + "status": 0, + "executed": 1692787178 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787779 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788680 + }, + { + "status": 0, + "executed": 1692788980 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789581 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-1/3/0.3104 ingressOctets=848857480453553,egressOctets=102626323275910,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789581, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-1-3-0.3104", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8cc7e5de-59e8-4720-b472-cc525c71c794", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-1/3/0.3920 1257", + "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, + "duration": 0.46859159, + "executed": 1692789595, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784792 + }, + { + "status": 0, + "executed": 1692785092 + }, + { + "status": 0, + "executed": 1692785392 + }, + { + "status": 0, + "executed": 1692785692 + }, + { + "status": 0, + "executed": 1692785993 + }, + { + "status": 0, + "executed": 1692786293 + }, + { + "status": 0, + "executed": 1692786592 + }, + { + "status": 0, + "executed": 1692786893 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787794 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788695 + }, + { + "status": 0, + "executed": 1692788995 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789595 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-1/3/0.3920 ingressOctets=187409700,egressOctets=735635628,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789595, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-1-3-0.3920", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c7bed670-b8ec-41eb-9b8c-d2ea1bfc0c48", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789596 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/1/0 905", + "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, + "duration": 0.461877666, + "executed": 1692789589, + "history": [ + { + "status": 0, + "executed": 1692783586 + }, + { + "status": 0, + "executed": 1692783886 + }, + { + "status": 0, + "executed": 1692784186 + }, + { + "status": 0, + "executed": 1692784486 + }, + { + "status": 0, + "executed": 1692784786 + }, + { + "status": 0, + "executed": 1692785086 + }, + { + "status": 0, + "executed": 1692785386 + }, + { + "status": 0, + "executed": 1692785686 + }, + { + "status": 0, + "executed": 1692785987 + }, + { + "status": 0, + "executed": 1692786287 + }, + { + "status": 0, + "executed": 1692786587 + }, + { + "status": 0, + "executed": 1692786887 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787488 + }, + { + "status": 0, + "executed": 1692787788 + }, + { + "status": 0, + "executed": 1692788089 + }, + { + "status": 0, + "executed": 1692788389 + }, + { + "status": 0, + "executed": 1692788689 + }, + { + "status": 0, + "executed": 1692788989 + }, + { + "status": 0, + "executed": 1692789290 + }, + { + "status": 0, + "executed": 1692789589 + } + ], + "issued": 1692789589, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-10/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789589, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-10-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "536e755e-5011-4365-814f-d561d7f4ca77", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789590 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-10/3/0 914", + "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, + "duration": 0.445801201, + "executed": 1692789569, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785365 + }, + { + "status": 0, + "executed": 1692785665 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786566 + }, + { + "status": 0, + "executed": 1692786866 + }, + { + "status": 0, + "executed": 1692787166 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787767 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788668 + }, + { + "status": 0, + "executed": 1692788968 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789569 + } + ], + "issued": 1692789568, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-10/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789569, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-10-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9b504f01-37f4-42c1-837e-5f54a6b1246f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789569 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-11/0/2 1652", + "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, + "duration": 0.502358869, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-11/0/2 ingressOctets=6995199331970841,egressOctets=4153649899993234,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-11-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "220dec13-61e9-4b69-871e-6726786f8270", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-11/0/5 1653", + "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, + "duration": 0.523699692, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-11/0/5 ingressOctets=4032899665853767,egressOctets=7252231751687673,ingressErrors=0,egressErrors=2,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-11-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "00f87f6f-305c-45c4-943b-86aaa644129f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789601 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-11/1/2 1654", + "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, + "duration": 0.474351314, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783595 + }, + { + "status": 0, + "executed": 1692783895 + }, + { + "status": 0, + "executed": 1692784195 + }, + { + "status": 0, + "executed": 1692784495 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787197 + }, + { + "status": 0, + "executed": 1692787497 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788098 + }, + { + "status": 0, + "executed": 1692788398 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789299 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789599, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-11/1/2 ingressOctets=4030055226428603,egressOctets=8495330241022953,ingressErrors=0,egressErrors=3,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-11-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aff8cfd4-e471-4a16-a4a2-8d8f39906726", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-11/1/5 1655", + "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, + "duration": 0.479078403, + "executed": 1692789597, + "history": [ + { + "status": 0, + "executed": 1692783593 + }, + { + "status": 0, + "executed": 1692783893 + }, + { + "status": 0, + "executed": 1692784193 + }, + { + "status": 0, + "executed": 1692784493 + }, + { + "status": 0, + "executed": 1692784793 + }, + { + "status": 0, + "executed": 1692785093 + }, + { + "status": 0, + "executed": 1692785393 + }, + { + "status": 0, + "executed": 1692785693 + }, + { + "status": 0, + "executed": 1692785994 + }, + { + "status": 0, + "executed": 1692786294 + }, + { + "status": 0, + "executed": 1692786594 + }, + { + "status": 0, + "executed": 1692786894 + }, + { + "status": 0, + "executed": 1692787195 + }, + { + "status": 0, + "executed": 1692787495 + }, + { + "status": 0, + "executed": 1692787795 + }, + { + "status": 0, + "executed": 1692788096 + }, + { + "status": 0, + "executed": 1692788396 + }, + { + "status": 0, + "executed": 1692788696 + }, + { + "status": 0, + "executed": 1692788996 + }, + { + "status": 0, + "executed": 1692789297 + }, + { + "status": 0, + "executed": 1692789597 + } + ], + "issued": 1692789597, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-11/1/5 ingressOctets=4033066817467467,egressOctets=7556436227997570,ingressErrors=2,egressErrors=3,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789597, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-11-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "66a4cfa3-e77f-4171-bd58-53b3bb4cdab5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789597 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/2 1557", + "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, + "duration": 0.471119539, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786010 + }, + { + "status": 0, + "executed": 1692786310 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/2 ingressOctets=307879533492643,egressOctets=222315676429173,ingressErrors=2,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6947b0d2-8a35-4e66-ab81-7dd8d23261b9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5 1558", + "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, + "duration": 0.502877073, + "executed": 1692789595, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784792 + }, + { + "status": 0, + "executed": 1692785092 + }, + { + "status": 0, + "executed": 1692785392 + }, + { + "status": 0, + "executed": 1692785692 + }, + { + "status": 0, + "executed": 1692785993 + }, + { + "status": 0, + "executed": 1692786293 + }, + { + "status": 0, + "executed": 1692786592 + }, + { + "status": 0, + "executed": 1692786893 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787794 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788695 + }, + { + "status": 0, + "executed": 1692788995 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789595 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5 ingressOctets=53482536015683,egressOctets=29063231719711,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789595, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "26547318-77d2-4274-92ad-d0c1255157ec", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789596 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.1 1168", + "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, + "duration": 0.631038367, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783587 + }, + { + "status": 0, + "executed": 1692783887 + }, + { + "status": 0, + "executed": 1692784187 + }, + { + "status": 0, + "executed": 1692784487 + }, + { + "status": 0, + "executed": 1692784787 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785988 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787189 + }, + { + "status": 0, + "executed": 1692787489 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788090 + }, + { + "status": 0, + "executed": 1692788390 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789291 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789591, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cfabe70e-162e-420a-a706-0c50235f0fda", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2100 663", + "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, + "duration": 0.54264302, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.2100 ingressOctets=17154029087025,egressOctets=61263760252,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.2100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "064b1d6c-35c3-4565-b25f-9bfaa3f49c14", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789593 + }, + { + "check": { + "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, + "duration": 0.48318413, + "executed": 1692789614, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786612 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787212 + }, + { + "status": 0, + "executed": 1692787512 + }, + { + "status": 0, + "executed": 1692787813 + }, + { + "status": 0, + "executed": 1692788113 + }, + { + "status": 0, + "executed": 1692788413 + }, + { + "status": 0, + "executed": 1692788714 + }, + { + "status": 0, + "executed": 1692789014 + }, + { + "status": 0, + "executed": 1692789314 + }, + { + "status": 0, + "executed": 1692789614 + } + ], + "issued": 1692789614, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.2102 ingressOctets=227397910,egressOctets=31743113,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789614, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.2102", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8e619b04-48ee-44c6-9917-b717c90b8b44", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789615 + }, + { + "check": { + "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, + "duration": 0.500640022, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786623 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.2103 ingressOctets=16310543036,egressOctets=291104012,ingressErrors=0,egressErrors=0,ingressOctetsv6=532193630,egressOctetsv6=146802749,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.2103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5ac45ec9-a60d-4d6c-9978-c7b094d8b388", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2126 1589", + "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, + "duration": 0.462732935, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.2126 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.2126", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b0fec6a4-af22-433c-a09c-a35d61651b97", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2128 1590", + "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, + "duration": 0.449301892, + "executed": 1692789598, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786595 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789598 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.2128 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789598, + "occurrences": 18333, + "occurrences_watermark": 18333, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.2128", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "238d8560-90bd-42e3-9586-21811753e2de", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2160 747", + "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, + "duration": 0.517691051, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.2160 ingressOctets=875027331,egressOctets=8636336039,ingressErrors=0,egressErrors=0,ingressOctetsv6=85700828,egressOctetsv6=1573590,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 18334, + "occurrences_watermark": 18334, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.2160", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "39dd6eef-4158-456e-a801-97d5f433df42", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.2779 1591", + "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, + "duration": 0.49496412, + "executed": 1692789621, + "history": [ + { + "status": 0, + "executed": 1692783616 + }, + { + "status": 0, + "executed": 1692783916 + }, + { + "status": 0, + "executed": 1692784216 + }, + { + "status": 0, + "executed": 1692784516 + }, + { + "status": 0, + "executed": 1692784817 + }, + { + "status": 0, + "executed": 1692785117 + }, + { + "status": 0, + "executed": 1692785417 + }, + { + "status": 0, + "executed": 1692785717 + }, + { + "status": 0, + "executed": 1692786019 + }, + { + "status": 0, + "executed": 1692786319 + }, + { + "status": 0, + "executed": 1692786618 + }, + { + "status": 0, + "executed": 1692786919 + }, + { + "status": 0, + "executed": 1692787219 + }, + { + "status": 0, + "executed": 1692787519 + }, + { + "status": 0, + "executed": 1692787820 + }, + { + "status": 0, + "executed": 1692788120 + }, + { + "status": 0, + "executed": 1692788421 + }, + { + "status": 0, + "executed": 1692788721 + }, + { + "status": 0, + "executed": 1692789021 + }, + { + "status": 0, + "executed": 1692789322 + }, + { + "status": 0, + "executed": 1692789621 + } + ], + "issued": 1692789621, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.2779 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789621, + "occurrences": 18335, + "occurrences_watermark": 18335, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.2779", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3e3ef8b8-d24e-4d84-bbb4-2810eae1139f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789622 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3001 1592", + "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, + "duration": 0.476264739, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786003 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786602 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.3001 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.3001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "19b7a8d1-699b-4ac9-a144-1cd786c46f44", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3100 590", + "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, + "duration": 0.473695953, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783623 + }, + { + "status": 0, + "executed": 1692783923 + }, + { + "status": 0, + "executed": 1692784223 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785424 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786025 + }, + { + "status": 0, + "executed": 1692786325 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.3100 ingressOctets=36226379738553,egressOctets=23287449431523,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.3100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "faffb695-40e2-47f5-b4f4-322e7e7682c1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3101 1142", + "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, + "duration": 0.56134138, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.3101 ingressOctets=71266958970,egressOctets=5574551970193,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.3101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bd95cba8-625c-4a3a-91db-41f56f5e6f0e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789601 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3803 1593", + "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, + "duration": 0.519974892, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.3803 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.3803", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "33ad7e54-8ce7-4936-89d8-3acb879e57f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3806 1594", + "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, + "duration": 0.452744209, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.3806 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 18116, + "occurrences_watermark": 18116, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.3806", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "41679957-6cd9-4481-a15b-9d7d0b8926b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3807 1595", + "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, + "duration": 0.538069704, + "executed": 1692789617, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789617 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.3807 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789617, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.3807", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "818a62ca-80d8-44d2-9762-6ff38fae8613", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3810 1596", + "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, + "duration": 0.541077452, + "executed": 1692789617, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789617 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.3810 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789617, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.3810", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e0f67448-2b8c-4d14-88d7-fdbe6c0b32a3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.3880 1597", + "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, + "duration": 0.472279243, + "executed": 1692789629, + "history": [ + { + "status": 0, + "executed": 1692783625 + }, + { + "status": 0, + "executed": 1692783925 + }, + { + "status": 0, + "executed": 1692784225 + }, + { + "status": 0, + "executed": 1692784525 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786627 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789629 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.3880 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789629, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.3880", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f04e9031-c6e7-47a6-a9ab-6626ab17ecf1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.4020 1598", + "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, + "duration": 0.459386843, + "executed": 1692789634, + "history": [ + { + "status": 0, + "executed": 1692783631 + }, + { + "status": 0, + "executed": 1692783931 + }, + { + "status": 0, + "executed": 1692784231 + }, + { + "status": 0, + "executed": 1692784531 + }, + { + "status": 0, + "executed": 1692784831 + }, + { + "status": 0, + "executed": 1692785131 + }, + { + "status": 0, + "executed": 1692785431 + }, + { + "status": 0, + "executed": 1692785731 + }, + { + "status": 0, + "executed": 1692786032 + }, + { + "status": 0, + "executed": 1692786332 + }, + { + "status": 0, + "executed": 1692786632 + }, + { + "status": 0, + "executed": 1692786932 + }, + { + "status": 0, + "executed": 1692787232 + }, + { + "status": 0, + "executed": 1692787533 + }, + { + "status": 0, + "executed": 1692787833 + }, + { + "status": 0, + "executed": 1692788133 + }, + { + "status": 0, + "executed": 1692788434 + }, + { + "status": 0, + "executed": 1692788734 + }, + { + "status": 0, + "executed": 1692789034 + }, + { + "status": 0, + "executed": 1692789335 + }, + { + "status": 0, + "executed": 1692789634 + } + ], + "issued": 1692789634, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.4020 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789634, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.4020", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2f038144-7199-4872-b17a-483443b763c2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789635 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.500 1012", + "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, + "duration": 0.503941536, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.500 ingressOctets=11855237898,egressOctets=127342315954,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.500", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "53b5241d-b642-45c0-b328-adeb07cb7fd9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/0/5.906 1587", + "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, + "duration": 0.469674115, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785440 + }, + { + "status": 0, + "executed": 1692785740 + }, + { + "status": 0, + "executed": 1692786041 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787241 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787842 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/0/5.906 ingressOctets=1590248200,egressOctets=3589841110,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 18334, + "occurrences_watermark": 18334, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-0-5.906", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d81ee712-35dd-490b-8910-12603969603d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/1/2 1559", + "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, + "duration": 0.474542509, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786302 + }, + { + "status": 0, + "executed": 1692786602 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/1/2 ingressOctets=829042932644494,egressOctets=3037348981881638,ingressErrors=8,egressErrors=18,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d5d04407-fc2e-4b5b-9fe8-11c8c6c82ff0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789605 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-2/1/5 1560", + "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, + "duration": 0.493723863, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787535 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-2/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-2-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5f646a1b-21cd-4899-9713-5efffd59b55b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/0/2 1294", + "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, + "duration": 0.485613763, + "executed": 1692789644, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785741 + }, + { + "status": 0, + "executed": 1692786042 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787843 + }, + { + "status": 0, + "executed": 1692788143 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789044 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789644 + } + ], + "issued": 1692789644, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-4/0/2 ingressOctets=200533731106,egressOctets=35723386344,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789644, + "occurrences": 18114, + "occurrences_watermark": 18114, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-4-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c70838ab-86c2-41aa-ba94-38bdc3f31a17", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/0/5 1295", + "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, + "duration": 0.475018096, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783623 + }, + { + "status": 0, + "executed": 1692783923 + }, + { + "status": 0, + "executed": 1692784223 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785424 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786025 + }, + { + "status": 0, + "executed": 1692786325 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-4/0/5 ingressOctets=170534573867698,egressOctets=63694957373261,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-4-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "34562fa4-7b2e-4022-a20e-37dd79e31108", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/1/2 1296", + "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, + "duration": 0.535274477, + "executed": 1692789636, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785433 + }, + { + "status": 0, + "executed": 1692785733 + }, + { + "status": 0, + "executed": 1692786034 + }, + { + "status": 0, + "executed": 1692786334 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786934 + }, + { + "status": 0, + "executed": 1692787234 + }, + { + "status": 0, + "executed": 1692787535 + }, + { + "status": 0, + "executed": 1692787835 + }, + { + "status": 0, + "executed": 1692788135 + }, + { + "status": 0, + "executed": 1692788435 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789036 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789636 + } + ], + "issued": 1692789636, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-4/1/2 ingressOctets=57514234267818,egressOctets=3447978749368,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789636, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-4-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "28c623d4-0241-4143-be20-3bd390e3728e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/1/2.100 963", + "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, + "duration": 0.466000669, + "executed": 1692789631, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784827 + }, + { + "status": 0, + "executed": 1692785127 + }, + { + "status": 0, + "executed": 1692785427 + }, + { + "status": 0, + "executed": 1692785727 + }, + { + "status": 0, + "executed": 1692786028 + }, + { + "status": 0, + "executed": 1692786328 + }, + { + "status": 0, + "executed": 1692786628 + }, + { + "status": 0, + "executed": 1692786928 + }, + { + "status": 0, + "executed": 1692787228 + }, + { + "status": 0, + "executed": 1692787529 + }, + { + "status": 0, + "executed": 1692787829 + }, + { + "status": 0, + "executed": 1692788130 + }, + { + "status": 0, + "executed": 1692788430 + }, + { + "status": 0, + "executed": 1692788730 + }, + { + "status": 0, + "executed": 1692789031 + }, + { + "status": 0, + "executed": 1692789331 + }, + { + "status": 0, + "executed": 1692789631 + } + ], + "issued": 1692789631, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-4/1/2.100 ingressOctets=57514233922842,egressOctets=3447902012058,ingressErrors=0,egressErrors=0,ingressOctetsv6=4000,egressOctetsv6=4900,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789631, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-4-1-2.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c65cdfd-79aa-4f19-89b0-8778cdcbfdff", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789631 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/1/2.111 508", + "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, + "duration": 0.48284527, + "executed": 1692789631, + "history": [ + { + "status": 0, + "executed": 1692783628 + }, + { + "status": 0, + "executed": 1692783928 + }, + { + "status": 0, + "executed": 1692784228 + }, + { + "status": 0, + "executed": 1692784528 + }, + { + "status": 0, + "executed": 1692784828 + }, + { + "status": 0, + "executed": 1692785128 + }, + { + "status": 0, + "executed": 1692785428 + }, + { + "status": 0, + "executed": 1692785728 + }, + { + "status": 0, + "executed": 1692786029 + }, + { + "status": 0, + "executed": 1692786329 + }, + { + "status": 0, + "executed": 1692786629 + }, + { + "status": 0, + "executed": 1692786929 + }, + { + "status": 0, + "executed": 1692787229 + }, + { + "status": 0, + "executed": 1692787530 + }, + { + "status": 0, + "executed": 1692787830 + }, + { + "status": 0, + "executed": 1692788130 + }, + { + "status": 0, + "executed": 1692788431 + }, + { + "status": 0, + "executed": 1692788731 + }, + { + "status": 0, + "executed": 1692789031 + }, + { + "status": 0, + "executed": 1692789331 + }, + { + "status": 0, + "executed": 1692789631 + } + ], + "issued": 1692789631, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-4/1/2.111 ingressOctets=344676,egressOctets=200882,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789631, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-4-1-2.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5f2140dc-990b-43bb-be0a-dced2cd92e15", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789632 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-4/1/5 1320", + "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, + "duration": 0.500133055, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-4/1/5 ingressOctets=14591295679422371,egressOctets=16208098508457899,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 18335, + "occurrences_watermark": 18335, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-4-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4f3e3d22-2638-4c61-835f-a789c9dc7200", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/2 1203", + "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, + "duration": 0.497172376, + "executed": 1692789628, + "history": [ + { + "status": 0, + "executed": 1692783624 + }, + { + "status": 0, + "executed": 1692783924 + }, + { + "status": 0, + "executed": 1692784224 + }, + { + "status": 0, + "executed": 1692784524 + }, + { + "status": 0, + "executed": 1692784825 + }, + { + "status": 0, + "executed": 1692785125 + }, + { + "status": 0, + "executed": 1692785425 + }, + { + "status": 0, + "executed": 1692785725 + }, + { + "status": 0, + "executed": 1692786026 + }, + { + "status": 0, + "executed": 1692786326 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787226 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787827 + }, + { + "status": 0, + "executed": 1692788127 + }, + { + "status": 0, + "executed": 1692788427 + }, + { + "status": 0, + "executed": 1692788727 + }, + { + "status": 0, + "executed": 1692789028 + }, + { + "status": 0, + "executed": 1692789328 + }, + { + "status": 0, + "executed": 1692789628 + } + ], + "issued": 1692789628, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/2 ingressOctets=14479180526965980,egressOctets=16288734075657656,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789628, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4317529e-7221-4065-9a89-5ce5b4bcf78b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5 1204", + "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, + "duration": 0.496826952, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783619 + }, + { + "status": 0, + "executed": 1692783919 + }, + { + "status": 0, + "executed": 1692784219 + }, + { + "status": 0, + "executed": 1692784519 + }, + { + "status": 0, + "executed": 1692784820 + }, + { + "status": 0, + "executed": 1692785120 + }, + { + "status": 0, + "executed": 1692785420 + }, + { + "status": 0, + "executed": 1692785721 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788423 + }, + { + "status": 0, + "executed": 1692788723 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789324 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5 ingressOctets=6636606606634072,egressOctets=12673722499195244,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=337606\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b428d00c-4a81-4241-a601-9c3e7969f038", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789624 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.1 1174", + "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, + "duration": 0.476634638, + "executed": 1692789662, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784559 + }, + { + "status": 0, + "executed": 1692784859 + }, + { + "status": 0, + "executed": 1692785159 + }, + { + "status": 0, + "executed": 1692785459 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786360 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786960 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787561 + }, + { + "status": 0, + "executed": 1692787861 + }, + { + "status": 0, + "executed": 1692788161 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789062 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789662 + } + ], + "issued": 1692789662, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789662, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fddd0f89-553c-4739-86bf-8387786712ce", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.1002 1272", + "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, + "duration": 0.49988867, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.1002 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.1002", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1af6f967-3986-4c5f-8b67-6704d5ac2523", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.111 1268", + "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, + "duration": 0.470718304, + "executed": 1692789673, + "history": [ + { + "status": 0, + "executed": 1692783669 + }, + { + "status": 0, + "executed": 1692783969 + }, + { + "status": 0, + "executed": 1692784269 + }, + { + "status": 0, + "executed": 1692784570 + }, + { + "status": 0, + "executed": 1692784870 + }, + { + "status": 0, + "executed": 1692785170 + }, + { + "status": 0, + "executed": 1692785470 + }, + { + "status": 0, + "executed": 1692785770 + }, + { + "status": 0, + "executed": 1692786071 + }, + { + "status": 0, + "executed": 1692786371 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786971 + }, + { + "status": 0, + "executed": 1692787271 + }, + { + "status": 0, + "executed": 1692787572 + }, + { + "status": 0, + "executed": 1692787872 + }, + { + "status": 0, + "executed": 1692788172 + }, + { + "status": 0, + "executed": 1692788472 + }, + { + "status": 0, + "executed": 1692788772 + }, + { + "status": 0, + "executed": 1692789073 + }, + { + "status": 0, + "executed": 1692789373 + }, + { + "status": 0, + "executed": 1692789673 + } + ], + "issued": 1692789673, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.111 ingressOctets=1368954188,egressOctets=179053675884421,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789673, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "77ca6fa8-ca62-4706-acea-e71a0e5d31ff", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789673 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.120 591", + "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, + "duration": 0.482104297, + "executed": 1692789581, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786578 + }, + { + "status": 0, + "executed": 1692786878 + }, + { + "status": 0, + "executed": 1692787178 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787779 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788680 + }, + { + "status": 0, + "executed": 1692788980 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789581 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.120 ingressOctets=7932690,egressOctets=97418218,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789581, + "occurrences": 7439, + "occurrences_watermark": 7439, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.120", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "31ff0a5a-27f2-447e-8cb9-9284bb9188ba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3349, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.123 1269", + "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, + "duration": 0.485053202, + "executed": 1692789640, + "history": [ + { + "status": 0, + "executed": 1692783637 + }, + { + "status": 0, + "executed": 1692783937 + }, + { + "status": 0, + "executed": 1692784237 + }, + { + "status": 0, + "executed": 1692784537 + }, + { + "status": 0, + "executed": 1692784837 + }, + { + "status": 0, + "executed": 1692785137 + }, + { + "status": 0, + "executed": 1692785437 + }, + { + "status": 0, + "executed": 1692785737 + }, + { + "status": 0, + "executed": 1692786038 + }, + { + "status": 0, + "executed": 1692786338 + }, + { + "status": 0, + "executed": 1692786638 + }, + { + "status": 0, + "executed": 1692786938 + }, + { + "status": 0, + "executed": 1692787238 + }, + { + "status": 0, + "executed": 1692787539 + }, + { + "status": 0, + "executed": 1692787839 + }, + { + "status": 0, + "executed": 1692788139 + }, + { + "status": 0, + "executed": 1692788440 + }, + { + "status": 0, + "executed": 1692788740 + }, + { + "status": 0, + "executed": 1692789040 + }, + { + "status": 0, + "executed": 1692789341 + }, + { + "status": 0, + "executed": 1692789640 + } + ], + "issued": 1692789640, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.123 ingressOctets=986977660,egressOctets=404924605035081,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789640, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.123", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c6f9b750-075b-47b5-8ecf-600eb52071c0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789641 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.1501 955", + "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, + "duration": 0.514242574, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.1501 ingressOctets=104006894070,egressOctets=36981937095,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.1501", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b948174e-4f4f-4e78-9057-2abeae5a36ee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2010 1273", + "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, + "duration": 0.52270836, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.2010 ingressOctets=46903364615,egressOctets=4873560789,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.2010", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8fb42948-1ba3-4aa8-8908-cf731d48b934", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2021 1274", + "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, + "duration": 0.46892838, + "executed": 1692789657, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785754 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786954 + }, + { + "status": 0, + "executed": 1692787255 + }, + { + "status": 0, + "executed": 1692787555 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788456 + }, + { + "status": 0, + "executed": 1692788756 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789357 + }, + { + "status": 0, + "executed": 1692789657 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.2021 ingressOctets=65349926475382,egressOctets=40767210140590,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789657, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.2021", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "35f10515-436a-414c-9893-ac2669cc7e67", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789657 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2023 1275", + "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, + "duration": 0.45993769, + "executed": 1692789630, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784827 + }, + { + "status": 0, + "executed": 1692785127 + }, + { + "status": 0, + "executed": 1692785427 + }, + { + "status": 0, + "executed": 1692785727 + }, + { + "status": 0, + "executed": 1692786028 + }, + { + "status": 0, + "executed": 1692786328 + }, + { + "status": 0, + "executed": 1692786628 + }, + { + "status": 0, + "executed": 1692786928 + }, + { + "status": 0, + "executed": 1692787228 + }, + { + "status": 0, + "executed": 1692787529 + }, + { + "status": 0, + "executed": 1692787829 + }, + { + "status": 0, + "executed": 1692788129 + }, + { + "status": 0, + "executed": 1692788430 + }, + { + "status": 0, + "executed": 1692788730 + }, + { + "status": 0, + "executed": 1692789030 + }, + { + "status": 0, + "executed": 1692789331 + }, + { + "status": 0, + "executed": 1692789630 + } + ], + "issued": 1692789630, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.2023 ingressOctets=3445999212029319,egressOctets=7269263981177377,ingressErrors=0,egressErrors=0,ingressOctetsv6=1448558443702305,egressOctetsv6=3854508794627532,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789630, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.2023", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0ba27b61-2302-4486-8026-3dab4c0f88f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789631 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2031 1276", + "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, + "duration": 0.485801812, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787551 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.2031 ingressOctets=369268141,egressOctets=882715840,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.2031", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc67119a-dd22-414a-96d7-6584aff16a00", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789653 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2033 982", + "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, + "duration": 0.468055966, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.2033 ingressOctets=74128354742,egressOctets=12533459873,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.2033", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "66aae635-908b-4df4-9078-1503cce054b9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.240 943", + "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, + "duration": 0.506154709, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.240 ingressOctets=9838226741,egressOctets=1283118645,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.240", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "27b81c5a-b017-4340-9fae-1e9469540c67", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.2718 1156", + "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, + "duration": 0.507869101, + "executed": 1692789631, + "history": [ + { + "status": 0, + "executed": 1692783628 + }, + { + "status": 0, + "executed": 1692783928 + }, + { + "status": 0, + "executed": 1692784228 + }, + { + "status": 0, + "executed": 1692784528 + }, + { + "status": 0, + "executed": 1692784828 + }, + { + "status": 0, + "executed": 1692785128 + }, + { + "status": 0, + "executed": 1692785428 + }, + { + "status": 0, + "executed": 1692785728 + }, + { + "status": 0, + "executed": 1692786029 + }, + { + "status": 0, + "executed": 1692786329 + }, + { + "status": 0, + "executed": 1692786629 + }, + { + "status": 0, + "executed": 1692786929 + }, + { + "status": 0, + "executed": 1692787229 + }, + { + "status": 0, + "executed": 1692787530 + }, + { + "status": 0, + "executed": 1692787830 + }, + { + "status": 0, + "executed": 1692788130 + }, + { + "status": 0, + "executed": 1692788431 + }, + { + "status": 0, + "executed": 1692788731 + }, + { + "status": 0, + "executed": 1692789031 + }, + { + "status": 0, + "executed": 1692789331 + }, + { + "status": 0, + "executed": 1692789631 + } + ], + "issued": 1692789631, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.2718 ingressOctets=9277789224576,egressOctets=579625143096940,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789631, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.2718", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4a101a52-fc0b-4681-8b02-0f03fdbcae31", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789632 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3003 1277", + "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, + "duration": 0.540171154, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786061 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3003 ingressOctets=28868436,egressOctets=126554781,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3003", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e60b1db3-e975-4bb8-9b51-9dff1b0ebca3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3140 763", + "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, + "duration": 0.4874371, + "executed": 1692789641, + "history": [ + { + "status": 0, + "executed": 1692783637 + }, + { + "status": 0, + "executed": 1692783937 + }, + { + "status": 0, + "executed": 1692784237 + }, + { + "status": 0, + "executed": 1692784537 + }, + { + "status": 0, + "executed": 1692784837 + }, + { + "status": 0, + "executed": 1692785137 + }, + { + "status": 0, + "executed": 1692785438 + }, + { + "status": 0, + "executed": 1692785738 + }, + { + "status": 0, + "executed": 1692786039 + }, + { + "status": 0, + "executed": 1692786339 + }, + { + "status": 0, + "executed": 1692786638 + }, + { + "status": 0, + "executed": 1692786939 + }, + { + "status": 0, + "executed": 1692787239 + }, + { + "status": 0, + "executed": 1692787539 + }, + { + "status": 0, + "executed": 1692787840 + }, + { + "status": 0, + "executed": 1692788140 + }, + { + "status": 0, + "executed": 1692788440 + }, + { + "status": 0, + "executed": 1692788742 + }, + { + "status": 0, + "executed": 1692789041 + }, + { + "status": 0, + "executed": 1692789341 + }, + { + "status": 0, + "executed": 1692789641 + } + ], + "issued": 1692789641, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3140 ingressOctets=101482758431142,egressOctets=51577230856980,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789641, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3140", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f5f690e7-a833-451e-bd86-11e702fc5ce5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789641 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3151 769", + "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, + "duration": 0.601128152, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3151 ingressOctets=226732972684295,egressOctets=124005518134323,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3151", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "57643020-0975-4fe0-be76-c5ef623a9832", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3801 1278", + "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, + "duration": 0.509775136, + "executed": 1692789668, + "history": [ + { + "status": 0, + "executed": 1692783665 + }, + { + "status": 0, + "executed": 1692783965 + }, + { + "status": 0, + "executed": 1692784265 + }, + { + "status": 0, + "executed": 1692784565 + }, + { + "status": 0, + "executed": 1692784865 + }, + { + "status": 0, + "executed": 1692785165 + }, + { + "status": 0, + "executed": 1692785465 + }, + { + "status": 0, + "executed": 1692785766 + }, + { + "status": 0, + "executed": 1692786066 + }, + { + "status": 0, + "executed": 1692786366 + }, + { + "status": 0, + "executed": 1692786666 + }, + { + "status": 0, + "executed": 1692786966 + }, + { + "status": 0, + "executed": 1692787267 + }, + { + "status": 0, + "executed": 1692787567 + }, + { + "status": 0, + "executed": 1692787867 + }, + { + "status": 0, + "executed": 1692788167 + }, + { + "status": 0, + "executed": 1692788468 + }, + { + "status": 0, + "executed": 1692788768 + }, + { + "status": 0, + "executed": 1692789068 + }, + { + "status": 0, + "executed": 1692789369 + }, + { + "status": 0, + "executed": 1692789668 + } + ], + "issued": 1692789668, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3801 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789668, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3801", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a5fb7c12-bd8a-427c-ba4a-37fc2f54ff78", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789669 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3803 1279", + "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, + "duration": 0.487168659, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785440 + }, + { + "status": 0, + "executed": 1692785740 + }, + { + "status": 0, + "executed": 1692786041 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787842 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3803 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3803", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a2f46ea4-0576-4cbf-810c-7c70a0173714", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3900 1180", + "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, + "duration": 0.513027152, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786061 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3900 ingressOctets=261774968386,egressOctets=111550417161,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3900", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1a048a96-ea5c-4b77-8349-2df7378d2613", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3902 1193", + "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, + "duration": 0.693651177, + "executed": 1692789657, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786655 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789657 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3902 ingressOctets=515518165,egressOctets=253468722,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789657, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3902", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b23e40cc-6112-4060-8a44-190f6db45d80", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3906 1197", + "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, + "duration": 0.624041633, + "executed": 1692789657, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786655 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789657 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3906 ingressOctets=649055633976,egressOctets=52989780531,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789657, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3906", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0b3d0d77-8c81-4bfa-a9ef-9c9c02832693", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3909 1200", + "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, + "duration": 0.460563293, + "executed": 1692789629, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786627 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789629 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3909 ingressOctets=951460150,egressOctets=797415057,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789629, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3909", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d6fdd9a7-43ef-4250-bac7-d48949889a7c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3910 1201", + "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, + "duration": 0.512114634, + "executed": 1692789662, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784559 + }, + { + "status": 0, + "executed": 1692784859 + }, + { + "status": 0, + "executed": 1692785159 + }, + { + "status": 0, + "executed": 1692785459 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786360 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786960 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787561 + }, + { + "status": 0, + "executed": 1692787861 + }, + { + "status": 0, + "executed": 1692788161 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789062 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789662 + } + ], + "issued": 1692789662, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3910 ingressOctets=168739237,egressOctets=24781819737,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789662, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3910", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0d0bd054-7517-416d-9b55-1a96da66667f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3912 1205", + "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, + "duration": 0.483134448, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786061 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3912 ingressOctets=1425840617911,egressOctets=17097471007,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3912", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0ccce9fb-24da-4d53-af26-af024e8919b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3914 785", + "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, + "duration": 0.457306959, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3914 ingressOctets=40542913,egressOctets=244617046,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3914", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1f2da031-cbae-4dd3-a178-5681c91f97ef", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3916 1249", + "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, + "duration": 0.516286807, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785150 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787551 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3916 ingressOctets=26620817,egressOctets=230467230,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3916", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "db8f4f04-a2e9-462f-9bc2-8e657279323a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789653 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.3917 1253", + "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, + "duration": 0.494587656, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786623 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.3917 ingressOctets=1394257089,egressOctets=1390960780,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.3917", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c5b1e464-251b-4271-9b7d-4a2e80b8e88d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.4001 1281", + "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, + "duration": 0.483270187, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783639 + }, + { + "status": 0, + "executed": 1692783939 + }, + { + "status": 0, + "executed": 1692784239 + }, + { + "status": 0, + "executed": 1692784539 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785440 + }, + { + "status": 0, + "executed": 1692785740 + }, + { + "status": 0, + "executed": 1692786041 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787842 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.4001 ingressOctets=1157678207225932,egressOctets=40446039567367,ingressErrors=0,egressErrors=0,ingressOctetsv6=29069190961810,egressOctetsv6=195677032673,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.4001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ba939a84-7fca-4f0e-b7ef-3c33806dc580", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.4005 1282", + "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, + "duration": 0.495233783, + "executed": 1692789651, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784548 + }, + { + "status": 0, + "executed": 1692784848 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786049 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786649 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788151 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789651 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.4005 ingressOctets=1627474219183385,egressOctets=3983840759414393,ingressErrors=0,egressErrors=0,ingressOctetsv6=1627474404990243,egressOctetsv6=3983844347110533,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789651, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.4005", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fdd2001d-80dd-4ba1-97a4-b4dfceba5524", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.991 945", + "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, + "duration": 0.497338308, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783623 + }, + { + "status": 0, + "executed": 1692783923 + }, + { + "status": 0, + "executed": 1692784223 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785424 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786025 + }, + { + "status": 0, + "executed": 1692786325 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788427 + }, + { + "status": 0, + "executed": 1692788727 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789328 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.991 ingressOctets=14696271181,egressOctets=989348320,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc32d92d-d486-4cb6-a54f-c7a87e4b698c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/0/5.992 946", + "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, + "duration": 0.481865935, + "executed": 1692789657, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785754 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787255 + }, + { + "status": 0, + "executed": 1692787555 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788456 + }, + { + "status": 0, + "executed": 1692788756 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789357 + }, + { + "status": 0, + "executed": 1692789657 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/0/5.992 ingressOctets=34945130798,egressOctets=1152747064,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789657, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-0-5.992", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4373dd2a-d94e-4ae6-b700-97db8670f9b1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789657 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2 1265", + "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, + "duration": 0.50283009, + "executed": 1692789656, + "history": [ + { + "status": 0, + "executed": 1692783652 + }, + { + "status": 0, + "executed": 1692783952 + }, + { + "status": 0, + "executed": 1692784252 + }, + { + "status": 0, + "executed": 1692784552 + }, + { + "status": 0, + "executed": 1692784853 + }, + { + "status": 0, + "executed": 1692785153 + }, + { + "status": 0, + "executed": 1692785453 + }, + { + "status": 0, + "executed": 1692785753 + }, + { + "status": 0, + "executed": 1692786054 + }, + { + "status": 0, + "executed": 1692786354 + }, + { + "status": 0, + "executed": 1692786653 + }, + { + "status": 0, + "executed": 1692786954 + }, + { + "status": 0, + "executed": 1692787254 + }, + { + "status": 0, + "executed": 1692787554 + }, + { + "status": 0, + "executed": 1692787855 + }, + { + "status": 0, + "executed": 1692788155 + }, + { + "status": 0, + "executed": 1692788455 + }, + { + "status": 0, + "executed": 1692788755 + }, + { + "status": 0, + "executed": 1692789056 + }, + { + "status": 0, + "executed": 1692789356 + }, + { + "status": 0, + "executed": 1692789656 + } + ], + "issued": 1692789656, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2 ingressOctets=3690378205511275,egressOctets=3399986720363851,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789656, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "be521045-16bc-425a-a4d4-c2a064cfa9f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789656 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.1 1175", + "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, + "duration": 0.526250727, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f20a1c63-41ba-4fbb-8a10-6bd8a3de0201", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.102 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, + "duration": 0.493710195, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2.102 ingressOctets=3040075155,egressOctets=1525147569,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2.102", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7d8b77e0-95c3-4e6e-9f25-e3aeab2981e1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.104 1284", + "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, + "duration": 0.485787755, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786061 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2.104 ingressOctets=0,egressOctets=34032694,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2.104", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cbfdb8db-f64b-4d68-9a40-c2c145d2ca43", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.123 1285", + "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, + "duration": 0.5008344, + "executed": 1692789676, + "history": [ + { + "status": 0, + "executed": 1692783672 + }, + { + "status": 0, + "executed": 1692783972 + }, + { + "status": 0, + "executed": 1692784272 + }, + { + "status": 0, + "executed": 1692784573 + }, + { + "status": 0, + "executed": 1692784873 + }, + { + "status": 0, + "executed": 1692785173 + }, + { + "status": 0, + "executed": 1692785473 + }, + { + "status": 0, + "executed": 1692785773 + }, + { + "status": 0, + "executed": 1692786074 + }, + { + "status": 0, + "executed": 1692786374 + }, + { + "status": 0, + "executed": 1692786673 + }, + { + "status": 0, + "executed": 1692786974 + }, + { + "status": 0, + "executed": 1692787274 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787875 + }, + { + "status": 0, + "executed": 1692788175 + }, + { + "status": 0, + "executed": 1692788476 + }, + { + "status": 0, + "executed": 1692788776 + }, + { + "status": 0, + "executed": 1692789076 + }, + { + "status": 0, + "executed": 1692789377 + }, + { + "status": 0, + "executed": 1692789676 + } + ], + "issued": 1692789676, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2.123 ingressOctets=404934565169754,egressOctets=986982478,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789676, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2.123", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "148ea4b5-5b04-4c46-a7b2-c8a3a7168406", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789677 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.1488 1288", + "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, + "duration": 0.423225028, + "executed": 1692789662, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784559 + }, + { + "status": 0, + "executed": 1692784859 + }, + { + "status": 0, + "executed": 1692785159 + }, + { + "status": 0, + "executed": 1692785459 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786360 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786960 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787561 + }, + { + "status": 0, + "executed": 1692787861 + }, + { + "status": 0, + "executed": 1692788161 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789062 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789662 + } + ], + "issued": 1692789662, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2.1488 ingressOctets=0,egressOctets=186278905,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789662, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2.1488", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "67c1a3f4-de23-4ba6-803e-0760770b2c60", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.201 1009", + "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, + "duration": 0.511953684, + "executed": 1692789657, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785754 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787255 + }, + { + "status": 0, + "executed": 1692787555 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788456 + }, + { + "status": 0, + "executed": 1692788756 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789357 + }, + { + "status": 0, + "executed": 1692789657 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2.201 ingressOctets=4671605989746,egressOctets=4219255391390,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789657, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2.201", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a6f53c92-2404-4aa1-a439-81099bb6b44e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789657 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.2010 1289", + "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, + "duration": 0.417559646, + "executed": 1692789677, + "history": [ + { + "status": 0, + "executed": 1692783673 + }, + { + "status": 0, + "executed": 1692783973 + }, + { + "status": 0, + "executed": 1692784273 + }, + { + "status": 0, + "executed": 1692784573 + }, + { + "status": 0, + "executed": 1692784873 + }, + { + "status": 0, + "executed": 1692785173 + }, + { + "status": 0, + "executed": 1692785473 + }, + { + "status": 0, + "executed": 1692785774 + }, + { + "status": 0, + "executed": 1692786074 + }, + { + "status": 0, + "executed": 1692786374 + }, + { + "status": 0, + "executed": 1692786674 + }, + { + "status": 0, + "executed": 1692786974 + }, + { + "status": 0, + "executed": 1692787275 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788176 + }, + { + "status": 0, + "executed": 1692788476 + }, + { + "status": 0, + "executed": 1692788776 + }, + { + "status": 0, + "executed": 1692789077 + }, + { + "status": 0, + "executed": 1692789377 + }, + { + "status": 0, + "executed": 1692789677 + } + ], + "issued": 1692789677, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2.2010 ingressOctets=4873561723,egressOctets=46903365343,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789677, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2.2010", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "72f64a5b-22bc-4fdd-9415-2c54219ef02c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789677 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.2031 1290", + "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, + "duration": 0.428539882, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2.2031 ingressOctets=882725542,egressOctets=369270197,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2.2031", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8762d713-5147-40bb-b069-7c44a99a3392", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.2050 1154", + "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, + "duration": 0.477590235, + "executed": 1692789662, + "history": [ + { + "status": 0, + "executed": 1692783658 + }, + { + "status": 0, + "executed": 1692783958 + }, + { + "status": 0, + "executed": 1692784258 + }, + { + "status": 0, + "executed": 1692784559 + }, + { + "status": 0, + "executed": 1692784859 + }, + { + "status": 0, + "executed": 1692785159 + }, + { + "status": 0, + "executed": 1692785459 + }, + { + "status": 0, + "executed": 1692785759 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786360 + }, + { + "status": 0, + "executed": 1692786659 + }, + { + "status": 0, + "executed": 1692786960 + }, + { + "status": 0, + "executed": 1692787260 + }, + { + "status": 0, + "executed": 1692787560 + }, + { + "status": 0, + "executed": 1692787861 + }, + { + "status": 0, + "executed": 1692788161 + }, + { + "status": 0, + "executed": 1692788461 + }, + { + "status": 0, + "executed": 1692788761 + }, + { + "status": 0, + "executed": 1692789062 + }, + { + "status": 0, + "executed": 1692789362 + }, + { + "status": 0, + "executed": 1692789662 + } + ], + "issued": 1692789662, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2.2050 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789662, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2.2050", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "50b4f923-6d1d-4c5b-9d35-8f723314ebed", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789662 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/2.411 1287", + "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, + "duration": 0.486239555, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786061 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/2.411 ingressOctets=3280770692996274,egressOctets=3395721948811635,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-2.411", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "193affe3-27f9-435d-a7ce-b0e3a190f646", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/5 1266", + "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, + "duration": 0.435417507, + "executed": 1692789675, + "history": [ + { + "status": 0, + "executed": 1692783672 + }, + { + "status": 0, + "executed": 1692783972 + }, + { + "status": 0, + "executed": 1692784272 + }, + { + "status": 0, + "executed": 1692784572 + }, + { + "status": 0, + "executed": 1692784872 + }, + { + "status": 0, + "executed": 1692785172 + }, + { + "status": 0, + "executed": 1692785472 + }, + { + "status": 0, + "executed": 1692785773 + }, + { + "status": 0, + "executed": 1692786073 + }, + { + "status": 0, + "executed": 1692786373 + }, + { + "status": 0, + "executed": 1692786673 + }, + { + "status": 0, + "executed": 1692786973 + }, + { + "status": 0, + "executed": 1692787274 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787874 + }, + { + "status": 0, + "executed": 1692788174 + }, + { + "status": 0, + "executed": 1692788475 + }, + { + "status": 0, + "executed": 1692788775 + }, + { + "status": 0, + "executed": 1692789075 + }, + { + "status": 0, + "executed": 1692789376 + }, + { + "status": 0, + "executed": 1692789675 + } + ], + "issued": 1692789675, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/5 ingressOctets=339940330,egressOctets=682511168,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789675, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cb35356a-8f74-461f-b910-97494c2afaa0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789676 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-5/1/5.0 632", + "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, + "duration": 0.453611919, + "executed": 1692789676, + "history": [ + { + "status": 0, + "executed": 1692783672 + }, + { + "status": 0, + "executed": 1692783972 + }, + { + "status": 0, + "executed": 1692784272 + }, + { + "status": 0, + "executed": 1692784572 + }, + { + "status": 0, + "executed": 1692784872 + }, + { + "status": 0, + "executed": 1692785172 + }, + { + "status": 0, + "executed": 1692785472 + }, + { + "status": 0, + "executed": 1692785773 + }, + { + "status": 0, + "executed": 1692786073 + }, + { + "status": 0, + "executed": 1692786373 + }, + { + "status": 0, + "executed": 1692786673 + }, + { + "status": 0, + "executed": 1692786973 + }, + { + "status": 0, + "executed": 1692787274 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787875 + }, + { + "status": 0, + "executed": 1692788175 + }, + { + "status": 0, + "executed": 1692788475 + }, + { + "status": 0, + "executed": 1692788775 + }, + { + "status": 0, + "executed": 1692789076 + }, + { + "status": 0, + "executed": 1692789376 + }, + { + "status": 0, + "executed": 1692789676 + } + ], + "issued": 1692789676, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-5/1/5.0 ingressOctets=339939040,egressOctets=694056471,ingressErrors=0,egressErrors=0,ingressOctetsv6=1166728,egressOctetsv6=2810,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789676, + "occurrences": 18335, + "occurrences_watermark": 18335, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-5-1-5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "71c3d3a0-85de-44bc-9899-06d4027e2b5b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789676 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-7/0/4 1381", + "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, + "duration": 0.475845696, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-7/0/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-7-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a9bdb367-30b8-4e68-b0ab-a028179de1e0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-7/1/4 1390", + "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, + "duration": 0.512988047, + "executed": 1692789631, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784827 + }, + { + "status": 0, + "executed": 1692785127 + }, + { + "status": 0, + "executed": 1692785427 + }, + { + "status": 0, + "executed": 1692785727 + }, + { + "status": 0, + "executed": 1692786028 + }, + { + "status": 0, + "executed": 1692786328 + }, + { + "status": 0, + "executed": 1692786628 + }, + { + "status": 0, + "executed": 1692786928 + }, + { + "status": 0, + "executed": 1692787228 + }, + { + "status": 0, + "executed": 1692787529 + }, + { + "status": 0, + "executed": 1692787829 + }, + { + "status": 0, + "executed": 1692788130 + }, + { + "status": 0, + "executed": 1692788430 + }, + { + "status": 0, + "executed": 1692788730 + }, + { + "status": 0, + "executed": 1692789031 + }, + { + "status": 0, + "executed": 1692789331 + }, + { + "status": 0, + "executed": 1692789631 + } + ], + "issued": 1692789631, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-7/1/4 ingressOctets=9388343638196085,egressOctets=10341261598481015,ingressErrors=2,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789631, + "occurrences": 18336, + "occurrences_watermark": 18336, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-7-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "34115454-494c-48ea-a243-dc39480951cf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789631 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-8/0/4 916", + "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, + "duration": 0.509076509, + "executed": 1692789681, + "history": [ + { + "status": 0, + "executed": 1692783678 + }, + { + "status": 0, + "executed": 1692783978 + }, + { + "status": 0, + "executed": 1692784278 + }, + { + "status": 0, + "executed": 1692784578 + }, + { + "status": 0, + "executed": 1692784878 + }, + { + "status": 0, + "executed": 1692785178 + }, + { + "status": 0, + "executed": 1692785478 + }, + { + "status": 0, + "executed": 1692785779 + }, + { + "status": 0, + "executed": 1692786079 + }, + { + "status": 0, + "executed": 1692786379 + }, + { + "status": 0, + "executed": 1692786679 + }, + { + "status": 0, + "executed": 1692786979 + }, + { + "status": 0, + "executed": 1692787280 + }, + { + "status": 0, + "executed": 1692787580 + }, + { + "status": 0, + "executed": 1692787880 + }, + { + "status": 0, + "executed": 1692788180 + }, + { + "status": 0, + "executed": 1692788481 + }, + { + "status": 0, + "executed": 1692788781 + }, + { + "status": 0, + "executed": 1692789081 + }, + { + "status": 0, + "executed": 1692789381 + }, + { + "status": 0, + "executed": 1692789681 + } + ], + "issued": 1692789681, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-8/0/4 ingressOctets=25255526295950682,egressOctets=16107037306927256,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789681, + "occurrences": 18345, + "occurrences_watermark": 18345, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-8-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a25fe0a-8079-4fcd-a0c5-5a1c7dec5fac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-8/1/4 1013", + "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, + "duration": 0.529771601, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786378 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-8/1/4 ingressOctets=25896451562424504,egressOctets=16114198944665677,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-8-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6572ae95-ba03-49f2-9802-27a050ca893d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/0/2 1404", + "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, + "duration": 0.482981252, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/0/2 ingressOctets=4953763178156967,egressOctets=1954385316010739,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc00d0c1-f954-44b5-9245-813323af44d8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/0/2.104 1407", + "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, + "duration": 0.448774011, + "executed": 1692789700, + "history": [ + { + "status": 0, + "executed": 1692783697 + }, + { + "status": 0, + "executed": 1692783998 + }, + { + "status": 0, + "executed": 1692784298 + }, + { + "status": 0, + "executed": 1692784598 + }, + { + "status": 0, + "executed": 1692784898 + }, + { + "status": 0, + "executed": 1692785198 + }, + { + "status": 0, + "executed": 1692785498 + }, + { + "status": 0, + "executed": 1692785799 + }, + { + "status": 0, + "executed": 1692786099 + }, + { + "status": 0, + "executed": 1692786399 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692786999 + }, + { + "status": 0, + "executed": 1692787300 + }, + { + "status": 0, + "executed": 1692787600 + }, + { + "status": 0, + "executed": 1692787900 + }, + { + "status": 0, + "executed": 1692788200 + }, + { + "status": 0, + "executed": 1692788500 + }, + { + "status": 0, + "executed": 1692788801 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789700 + } + ], + "issued": 1692789700, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/0/2.104 ingressOctets=2217447163145083,egressOctets=223319461795940,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789700, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-0-2.104", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "018917d2-ff14-43d3-a49e-e46c2678aad0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/0/2.106 1408", + "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, + "duration": 0.445626603, + "executed": 1692789704, + "history": [ + { + "status": 0, + "executed": 1692783701 + }, + { + "status": 0, + "executed": 1692784001 + }, + { + "status": 0, + "executed": 1692784301 + }, + { + "status": 0, + "executed": 1692784602 + }, + { + "status": 0, + "executed": 1692784902 + }, + { + "status": 0, + "executed": 1692785202 + }, + { + "status": 0, + "executed": 1692785502 + }, + { + "status": 0, + "executed": 1692785802 + }, + { + "status": 0, + "executed": 1692786103 + }, + { + "status": 0, + "executed": 1692786403 + }, + { + "status": 0, + "executed": 1692786703 + }, + { + "status": 0, + "executed": 1692787003 + }, + { + "status": 0, + "executed": 1692787303 + }, + { + "status": 0, + "executed": 1692787603 + }, + { + "status": 0, + "executed": 1692787903 + }, + { + "status": 0, + "executed": 1692788204 + }, + { + "status": 0, + "executed": 1692788504 + }, + { + "status": 0, + "executed": 1692788804 + }, + { + "status": 0, + "executed": 1692789104 + }, + { + "status": 0, + "executed": 1692789404 + }, + { + "status": 0, + "executed": 1692789704 + } + ], + "issued": 1692789704, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/0/2.106 ingressOctets=1122556562854972,egressOctets=1693084495303530,ingressErrors=0,egressErrors=0,ingressOctetsv6=1122557223826152,egressOctetsv6=1693084647639402,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789704, + "occurrences": 18335, + "occurrences_watermark": 18335, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-0-2.106", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "984d7061-858d-4652-9388-0eed456e5ab5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789704 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/0/2.111 1409", + "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, + "duration": 1.262455204, + "executed": 1692789682, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786381 + }, + { + "status": 0, + "executed": 1692786681 + }, + { + "status": 0, + "executed": 1692786981 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788482 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789682 + } + ], + "issued": 1692789682, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/0/2.111 ingressOctets=1613758608149660,egressOctets=37983135282182,ingressErrors=0,egressErrors=0,ingressOctetsv6=1273107731384079,egressOctetsv6=37958570963097,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789682, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-0-2.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e778bfd8-d15d-4943-b006-9d16c401eed9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789684 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/0/5 1403", + "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, + "duration": 0.490114226, + "executed": 1692789675, + "history": [ + { + "status": 0, + "executed": 1692783671 + }, + { + "status": 0, + "executed": 1692783971 + }, + { + "status": 0, + "executed": 1692784271 + }, + { + "status": 0, + "executed": 1692784571 + }, + { + "status": 0, + "executed": 1692784871 + }, + { + "status": 0, + "executed": 1692785171 + }, + { + "status": 0, + "executed": 1692785471 + }, + { + "status": 0, + "executed": 1692785772 + }, + { + "status": 0, + "executed": 1692786072 + }, + { + "status": 0, + "executed": 1692786372 + }, + { + "status": 0, + "executed": 1692786672 + }, + { + "status": 0, + "executed": 1692786972 + }, + { + "status": 0, + "executed": 1692787273 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787874 + }, + { + "status": 0, + "executed": 1692788174 + }, + { + "status": 0, + "executed": 1692788475 + }, + { + "status": 0, + "executed": 1692788775 + }, + { + "status": 0, + "executed": 1692789075 + }, + { + "status": 0, + "executed": 1692789376 + }, + { + "status": 0, + "executed": 1692789675 + } + ], + "issued": 1692789675, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/0/5 ingressOctets=14645571486984392,egressOctets=16259728542213666,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789675, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "38606ae9-5871-4156-8926-50aeecd31ad4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789676 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/2 1405", + "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, + "duration": 0.440367679, + "executed": 1692789673, + "history": [ + { + "status": 0, + "executed": 1692783669 + }, + { + "status": 0, + "executed": 1692783969 + }, + { + "status": 0, + "executed": 1692784269 + }, + { + "status": 0, + "executed": 1692784570 + }, + { + "status": 0, + "executed": 1692784870 + }, + { + "status": 0, + "executed": 1692785170 + }, + { + "status": 0, + "executed": 1692785470 + }, + { + "status": 0, + "executed": 1692785770 + }, + { + "status": 0, + "executed": 1692786071 + }, + { + "status": 0, + "executed": 1692786371 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786971 + }, + { + "status": 0, + "executed": 1692787271 + }, + { + "status": 0, + "executed": 1692787572 + }, + { + "status": 0, + "executed": 1692787872 + }, + { + "status": 0, + "executed": 1692788172 + }, + { + "status": 0, + "executed": 1692788472 + }, + { + "status": 0, + "executed": 1692788772 + }, + { + "status": 0, + "executed": 1692789073 + }, + { + "status": 0, + "executed": 1692789373 + }, + { + "status": 0, + "executed": 1692789673 + } + ], + "issued": 1692789673, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789673, + "occurrences": 18334, + "occurrences_watermark": 18334, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c04f040f-be2b-489d-ac94-25c850d94877", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789673 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5 1406", + "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, + "duration": 0.540987842, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783858 + }, + { + "status": 0, + "executed": 1692784158 + }, + { + "status": 0, + "executed": 1692784458 + }, + { + "status": 0, + "executed": 1692784758 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5 ingressOctets=14472379090417195,egressOctets=14292147736703379,ingressErrors=37139087,egressErrors=14,ingressDiscards=0,egressDiscards=379842\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 17853, + "occurrences_watermark": 17853, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "49f43afe-ce40-48ab-b079-89d957f9092f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3725, + "timestamp": 1692789563 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.1 645", + "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, + "duration": 0.526813422, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0d1ec90d-949e-4b53-83a6-3660816de339", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3724, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.101 652", + "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, + "duration": 0.49503786, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783856 + }, + { + "status": 0, + "executed": 1692784156 + }, + { + "status": 0, + "executed": 1692784456 + }, + { + "status": 0, + "executed": 1692784756 + }, + { + "status": 0, + "executed": 1692785057 + }, + { + "status": 0, + "executed": 1692785357 + }, + { + "status": 0, + "executed": 1692785657 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786258 + }, + { + "status": 0, + "executed": 1692786558 + }, + { + "status": 0, + "executed": 1692786858 + }, + { + "status": 0, + "executed": 1692787158 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787759 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788660 + }, + { + "status": 0, + "executed": 1692788960 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.101 ingressOctets=159807173758,egressOctets=26455957771,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "30df9bad-a294-4d64-837c-a7a20a8f7f13", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3724, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.1620 1167", + "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, + "duration": 0.500422362, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783858 + }, + { + "status": 0, + "executed": 1692784158 + }, + { + "status": 0, + "executed": 1692784458 + }, + { + "status": 0, + "executed": 1692784758 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.1620 ingressOctets=5966185713,egressOctets=10185486280,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.1620", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c16ef35e-3560-4fa0-b5ff-c978707dbe19", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3725, + "timestamp": 1692789562 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.1623 1192", + "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, + "duration": 0.640664611, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.1623 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.1623", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "602e6b2b-2c71-457c-8723-68a6f0d03462", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3724, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.1624 1196", + "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, + "duration": 0.428957958, + "executed": 1692789574, + "history": [ + { + "status": 0, + "executed": 1692783569 + }, + { + "status": 0, + "executed": 1692783870 + }, + { + "status": 0, + "executed": 1692784170 + }, + { + "status": 0, + "executed": 1692784470 + }, + { + "status": 0, + "executed": 1692784770 + }, + { + "status": 0, + "executed": 1692785070 + }, + { + "status": 0, + "executed": 1692785370 + }, + { + "status": 0, + "executed": 1692785670 + }, + { + "status": 0, + "executed": 1692785970 + }, + { + "status": 0, + "executed": 1692786271 + }, + { + "status": 0, + "executed": 1692786571 + }, + { + "status": 0, + "executed": 1692786871 + }, + { + "status": 0, + "executed": 1692787171 + }, + { + "status": 0, + "executed": 1692787472 + }, + { + "status": 0, + "executed": 1692787772 + }, + { + "status": 0, + "executed": 1692788073 + }, + { + "status": 0, + "executed": 1692788373 + }, + { + "status": 0, + "executed": 1692788673 + }, + { + "status": 0, + "executed": 1692788973 + }, + { + "status": 0, + "executed": 1692789274 + }, + { + "status": 0, + "executed": 1692789574 + } + ], + "issued": 1692789573, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.1624 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789574, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.1624", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2f454f8c-c693-4561-8b85-33638d4150ae", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789574 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.1626 1198", + "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, + "duration": 0.521862085, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.1626 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.1626", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e530365-7fe6-4937-b494-dd037f997024", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.1627 1199", + "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, + "duration": 0.442161614, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.1627 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.1627", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5ad6bf4a-b66d-4e74-916f-2a64c5a70c5a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3726, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.1629 1202", + "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, + "duration": 0.443373793, + "executed": 1692789566, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784463 + }, + { + "status": 0, + "executed": 1692784762 + }, + { + "status": 0, + "executed": 1692785062 + }, + { + "status": 0, + "executed": 1692785362 + }, + { + "status": 0, + "executed": 1692785662 + }, + { + "status": 0, + "executed": 1692785962 + }, + { + "status": 0, + "executed": 1692786263 + }, + { + "status": 0, + "executed": 1692786563 + }, + { + "status": 0, + "executed": 1692786863 + }, + { + "status": 0, + "executed": 1692787163 + }, + { + "status": 0, + "executed": 1692787464 + }, + { + "status": 0, + "executed": 1692787764 + }, + { + "status": 0, + "executed": 1692788065 + }, + { + "status": 0, + "executed": 1692788365 + }, + { + "status": 0, + "executed": 1692788665 + }, + { + "status": 0, + "executed": 1692788965 + }, + { + "status": 0, + "executed": 1692789266 + }, + { + "status": 0, + "executed": 1692789566 + } + ], + "issued": 1692789565, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.1629 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789566, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.1629", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "52b4f87f-fe89-41ab-ad4d-da66efd02995", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789566 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.2016 753", + "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, + "duration": 0.472417216, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.2016 ingressOctets=6330830,egressOctets=8068415,ingressErrors=0,egressErrors=0,ingressOctetsv6=474,egressOctetsv6=508,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.2016", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8b4d83d8-dc66-41f6-8e82-fb640285ee4f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.2021 777", + "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, + "duration": 0.472456782, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785980 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.2021 ingressOctets=9726112275848,egressOctets=8743572457264,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.2021", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c3731e16-9b62-4019-bb7c-6249b48000dc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.2126 779", + "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, + "duration": 0.542027555, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.2126 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.2126", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cefa0f14-1b90-432a-949d-1a6c78c9c9e6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.2128 834", + "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, + "duration": 0.449810213, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.2128 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.2128", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "df251ee3-727f-4b94-8dbd-5476b0fc990a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.220 669", + "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, + "duration": 0.485945024, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.220 ingressOctets=80157029,egressOctets=16611208,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.220", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6196ef2d-60c0-40fc-b5b6-155026988cba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.2210 839", + "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, + "duration": 0.45272522, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785995 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.2210 ingressOctets=357589141793,egressOctets=6074523229,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.2210", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c18c6047-5553-4c96-bc43-78673359df20", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.2779 857", + "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, + "duration": 0.460066021, + "executed": 1692789600, + "history": [ + { + "status": 0, + "executed": 1692783595 + }, + { + "status": 0, + "executed": 1692783895 + }, + { + "status": 0, + "executed": 1692784195 + }, + { + "status": 0, + "executed": 1692784495 + }, + { + "status": 0, + "executed": 1692784796 + }, + { + "status": 0, + "executed": 1692785096 + }, + { + "status": 0, + "executed": 1692785396 + }, + { + "status": 0, + "executed": 1692785696 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786297 + }, + { + "status": 0, + "executed": 1692786597 + }, + { + "status": 0, + "executed": 1692786897 + }, + { + "status": 0, + "executed": 1692787197 + }, + { + "status": 0, + "executed": 1692787497 + }, + { + "status": 0, + "executed": 1692787798 + }, + { + "status": 0, + "executed": 1692788098 + }, + { + "status": 0, + "executed": 1692788398 + }, + { + "status": 0, + "executed": 1692788699 + }, + { + "status": 0, + "executed": 1692788999 + }, + { + "status": 0, + "executed": 1692789299 + }, + { + "status": 0, + "executed": 1692789600 + } + ], + "issued": 1692789599, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.2779 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789600, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.2779", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c85c77d1-10fc-4646-96ca-5eaaacc1c185", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789600 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.3000 873", + "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, + "duration": 0.534695022, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786591 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.3000 ingressOctets=1313666656782934,egressOctets=1535774180689791,ingressErrors=0,egressErrors=0,ingressOctetsv6=242216782743375,egressOctetsv6=754619782737270,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.3000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4a22a2ad-df8a-48e6-b71b-c437e5bf1c32", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.3001 960", + "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, + "duration": 0.466103391, + "executed": 1692789576, + "history": [ + { + "status": 0, + "executed": 1692783572 + }, + { + "status": 0, + "executed": 1692783872 + }, + { + "status": 0, + "executed": 1692784172 + }, + { + "status": 0, + "executed": 1692784472 + }, + { + "status": 0, + "executed": 1692784772 + }, + { + "status": 0, + "executed": 1692785072 + }, + { + "status": 0, + "executed": 1692785372 + }, + { + "status": 0, + "executed": 1692785672 + }, + { + "status": 0, + "executed": 1692785972 + }, + { + "status": 0, + "executed": 1692786273 + }, + { + "status": 0, + "executed": 1692786573 + }, + { + "status": 0, + "executed": 1692786873 + }, + { + "status": 0, + "executed": 1692787173 + }, + { + "status": 0, + "executed": 1692787474 + }, + { + "status": 0, + "executed": 1692787774 + }, + { + "status": 0, + "executed": 1692788075 + }, + { + "status": 0, + "executed": 1692788375 + }, + { + "status": 0, + "executed": 1692788675 + }, + { + "status": 0, + "executed": 1692788975 + }, + { + "status": 0, + "executed": 1692789276 + }, + { + "status": 0, + "executed": 1692789576 + } + ], + "issued": 1692789575, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.3001 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789576, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.3001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bd4b4129-3c65-4ceb-998a-fd8b4848082f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789576 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.3801 974", + "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, + "duration": 0.509812511, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.3801 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.3801", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6a25498c-f8d9-4325-8bdf-014f95c321d4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.3806 987", + "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, + "duration": 0.468611135, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.3806 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.3806", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0a78904f-ec35-424c-a620-79cb02307ab6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.3807 1039", + "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, + "duration": 0.451578291, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785980 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.3807 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.3807", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6175fbf7-ca7d-4ee9-a8a8-16f42bafca07", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.3810 1049", + "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, + "duration": 0.497562682, + "executed": 1692789585, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784781 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786582 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787182 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789585 + } + ], + "issued": 1692789584, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.3810 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789585, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.3810", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2ab30e46-2ec8-4fe7-bcfc-ba1ae8ae6fa2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.3880 1062", + "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, + "duration": 0.466365569, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.3880 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.3880", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "28eb6c10-76b9-4548-95b4-e3071eca66b9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.4020 1089", + "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, + "duration": 0.441527427, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785980 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.4020 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.4020", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eea7634d-c5d2-43f7-8129-e00b6ed4ab3a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3726, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.4040 1093", + "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, + "duration": 0.457954261, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785995 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.4040 ingressOctets=63945857487670,egressOctets=69611086074853,ingressErrors=0,egressErrors=0,ingressOctetsv6=15220049736771,egressOctetsv6=25066172328760,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.4040", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7283f9c7-20df-4c01-a55b-488eaa83b507", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.4050 1094", + "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, + "duration": 0.47122575, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785980 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.4050 ingressOctets=44029130088409,egressOctets=190863078364740,ingressErrors=0,egressErrors=0,ingressOctetsv6=12274335477242,egressOctetsv6=34651311890195,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.4050", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dd95ec43-1b84-4421-8c93-70638c941851", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.498 671", + "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, + "duration": 0.479161621, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785363 + }, + { + "status": 0, + "executed": 1692785663 + }, + { + "status": 0, + "executed": 1692785963 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786864 + }, + { + "status": 0, + "executed": 1692787164 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787765 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788666 + }, + { + "status": 0, + "executed": 1692788966 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789566, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.498 ingressOctets=413883504,egressOctets=416378320,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.498", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e072e213-8549-41a6-9ce6-6daa0e0507a5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.500 673", + "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, + "duration": 0.499757115, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.500 ingressOctets=0,egressOctets=1805344,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.500", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0b39560f-4741-4578-b9e3-3cd7fb8c0a38", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3726, + "timestamp": 1692789570 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.612 675", + "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, + "duration": 0.567783488, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.612 ingressOctets=6467178,egressOctets=7848889,ingressErrors=0,egressErrors=0,ingressOctetsv6=237,egressOctetsv6=254,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.612", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2d33bdd3-9c9b-4431-86eb-0a71e5b45f22", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.700 676", + "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, + "duration": 0.43627076, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.700 ingressOctets=668580,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.700", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f39c967c-2667-40ea-8c46-036d9c2730cb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.90 648", + "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, + "duration": 0.463453652, + "executed": 1692789569, + "history": [ + { + "status": 0, + "executed": 1692783565 + }, + { + "status": 0, + "executed": 1692783865 + }, + { + "status": 0, + "executed": 1692784165 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784765 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787467 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788068 + }, + { + "status": 0, + "executed": 1692788368 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789269 + }, + { + "status": 0, + "executed": 1692789569 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.90 ingressOctets=11602886158115,egressOctets=24724810732118,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789569, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.90", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "31117760-70de-4949-a887-74c967940133", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789570 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net et-9/1/5.902 677", + "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, + "duration": 0.486955354, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=et-9/1/5.902 ingressOctets=0,egressOctets=6987480,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 2023, + "occurrences_watermark": 2023, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-et-9-1-5.902", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "197f6628-ebd8-4c11-b8e8-5421b25cfb26", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3727, + "timestamp": 1692789570 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/0 592", + "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, + "duration": 0.437762666, + "executed": 1692789589, + "history": [ + { + "status": 0, + "executed": 1692783586 + }, + { + "status": 0, + "executed": 1692783886 + }, + { + "status": 0, + "executed": 1692784186 + }, + { + "status": 0, + "executed": 1692784486 + }, + { + "status": 0, + "executed": 1692784786 + }, + { + "status": 0, + "executed": 1692785086 + }, + { + "status": 0, + "executed": 1692785386 + }, + { + "status": 0, + "executed": 1692785686 + }, + { + "status": 0, + "executed": 1692785987 + }, + { + "status": 0, + "executed": 1692786287 + }, + { + "status": 0, + "executed": 1692786587 + }, + { + "status": 0, + "executed": 1692786887 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787488 + }, + { + "status": 0, + "executed": 1692787788 + }, + { + "status": 0, + "executed": 1692788089 + }, + { + "status": 0, + "executed": 1692788389 + }, + { + "status": 0, + "executed": 1692788689 + }, + { + "status": 0, + "executed": 1692788989 + }, + { + "status": 0, + "executed": 1692789290 + }, + { + "status": 0, + "executed": 1692789589 + } + ], + "issued": 1692789589, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/0 ingressOctets=881752160,egressOctets=163259997,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789589, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a9a86022-6ef6-4180-b853-02edc8b26496", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789590 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/1 593", + "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, + "duration": 0.487191812, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789102 + }, + { + "status": 0, + "executed": 1692789402 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/1 ingressOctets=706290423,egressOctets=6172795035,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5c7a4daa-95c9-4a92-b1f9-2a130f62a873", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789702 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/1.132 1437", + "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, + "duration": 0.512424103, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/1.132 ingressOctets=48170747,egressOctets=42803890,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-1.132", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6cf2d04b-eb71-442a-b3f1-0d83663a2908", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/2 594", + "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, + "duration": 0.61762798, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ef8b6cb4-c0bd-40b7-a438-6588976b8fac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/3 595", + "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, + "duration": 0.529831239, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8abbcc5d-c9a2-41ee-bc3f-b0ea3047a116", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/4 596", + "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, + "duration": 0.494673918, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8eecbabe-894b-4cef-a4ae-c4660ae71863", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/5 597", + "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, + "duration": 0.491802897, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783603 + }, + { + "status": 0, + "executed": 1692783903 + }, + { + "status": 0, + "executed": 1692784203 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6257b27a-af11-4c36-91c5-162b9570a1e9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/6 598", + "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, + "duration": 0.499431002, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783607 + }, + { + "status": 0, + "executed": 1692783907 + }, + { + "status": 0, + "executed": 1692784207 + }, + { + "status": 0, + "executed": 1692784507 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786008 + }, + { + "status": 0, + "executed": 1692786308 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787209 + }, + { + "status": 0, + "executed": 1692787509 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788110 + }, + { + "status": 0, + "executed": 1692788410 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789311 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789611, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/6 ingressOctets=8292436487,egressOctets=252866828840123,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cbef4e4d-b063-4d2c-98ca-36b48fa8d67b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789612 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/6.0 688", + "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, + "duration": 0.546829723, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787213 + }, + { + "status": 0, + "executed": 1692787514 + }, + { + "status": 0, + "executed": 1692787814 + }, + { + "status": 0, + "executed": 1692788115 + }, + { + "status": 0, + "executed": 1692788414 + }, + { + "status": 0, + "executed": 1692788715 + }, + { + "status": 0, + "executed": 1692789015 + }, + { + "status": 0, + "executed": 1692789316 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789615, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/6.0 ingressOctets=8292414907,egressOctets=252867261686864,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4ce73633-56ef-474b-8555-c96743866e20", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789616 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/8 600", + "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, + "duration": 0.445449675, + "executed": 1692789438, + "history": [ + { + "status": 0, + "executed": 1692783435 + }, + { + "status": 0, + "executed": 1692783735 + }, + { + "status": 0, + "executed": 1692784035 + }, + { + "status": 0, + "executed": 1692784335 + }, + { + "status": 0, + "executed": 1692784635 + }, + { + "status": 0, + "executed": 1692784935 + }, + { + "status": 0, + "executed": 1692785235 + }, + { + "status": 0, + "executed": 1692785536 + }, + { + "status": 0, + "executed": 1692785836 + }, + { + "status": 0, + "executed": 1692786136 + }, + { + "status": 0, + "executed": 1692786437 + }, + { + "status": 0, + "executed": 1692786737 + }, + { + "status": 0, + "executed": 1692787037 + }, + { + "status": 0, + "executed": 1692787337 + }, + { + "status": 0, + "executed": 1692787638 + }, + { + "status": 0, + "executed": 1692787938 + }, + { + "status": 0, + "executed": 1692788238 + }, + { + "status": 0, + "executed": 1692788538 + }, + { + "status": 0, + "executed": 1692788838 + }, + { + "status": 0, + "executed": 1692789138 + }, + { + "status": 0, + "executed": 1692789438 + } + ], + "issued": 1692789438, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/8 ingressOctets=818349924,egressOctets=1784205564,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789438, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8de9eb70-c9a3-4ebd-93dd-c3614d798a6f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789439 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/8.10 841", + "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, + "duration": 0.594556082, + "executed": 1692789624, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784518 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786020 + }, + { + "status": 0, + "executed": 1692786320 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788423 + }, + { + "status": 0, + "executed": 1692788723 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789324 + }, + { + "status": 0, + "executed": 1692789624 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/8.10 ingressOctets=535247690,egressOctets=1226860792,ingressErrors=0,egressErrors=0,ingressOctetsv6=184766349,egressOctetsv6=415062130,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789624, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-8.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "863fa722-097f-4fb8-aa37-5398877a37ee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789624 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/8.11 845", + "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, + "duration": 0.470576771, + "executed": 1692789647, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784541 + }, + { + "status": 0, + "executed": 1692784841 + }, + { + "status": 0, + "executed": 1692785141 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785742 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786644 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787545 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789647 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/8.11 ingressOctets=165556103,egressOctets=138442549,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789647, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-8.11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "76f4a009-b911-4432-8907-4a0485884824", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/8.12 700", + "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, + "duration": 0.464609766, + "executed": 1692789652, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784548 + }, + { + "status": 0, + "executed": 1692784848 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785449 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786350 + }, + { + "status": 0, + "executed": 1692786649 + }, + { + "status": 0, + "executed": 1692786950 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787851 + }, + { + "status": 0, + "executed": 1692788151 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789052 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789652 + } + ], + "issued": 1692789652, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/8.12 ingressOctets=25732908,egressOctets=276424027,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789652, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-8.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "410355be-a292-465e-bdd2-aef629b5f098", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/8.996 631", + "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, + "duration": 0.427164031, + "executed": 1692789506, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789506 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/8.996 ingressOctets=1877876,egressOctets=49536726,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789506, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-8.996", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f58a2986-682c-48fa-b3e6-c786bfeedc82", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9 601", + "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, + "duration": 0.459361496, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9 ingressOctets=54045990646,egressOctets=45129210751,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d8843dd3-b668-42ff-a68f-be901b0b5ce3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.130 821", + "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, + "duration": 0.487144004, + "executed": 1692789535, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786533 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787434 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788035 + }, + { + "status": 0, + "executed": 1692788335 + }, + { + "status": 0, + "executed": 1692788635 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789535 + } + ], + "issued": 1692789535, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.130 ingressOctets=33855023,egressOctets=32509666,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789535, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.130", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e700734a-e231-44ef-8bfb-ad6d00ae6ce7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789536 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.131 822", + "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, + "duration": 0.499473551, + "executed": 1692789704, + "history": [ + { + "status": 0, + "executed": 1692783701 + }, + { + "status": 0, + "executed": 1692784001 + }, + { + "status": 0, + "executed": 1692784301 + }, + { + "status": 0, + "executed": 1692784602 + }, + { + "status": 0, + "executed": 1692784902 + }, + { + "status": 0, + "executed": 1692785202 + }, + { + "status": 0, + "executed": 1692785502 + }, + { + "status": 0, + "executed": 1692785802 + }, + { + "status": 0, + "executed": 1692786103 + }, + { + "status": 0, + "executed": 1692786403 + }, + { + "status": 0, + "executed": 1692786703 + }, + { + "status": 0, + "executed": 1692787003 + }, + { + "status": 0, + "executed": 1692787303 + }, + { + "status": 0, + "executed": 1692787603 + }, + { + "status": 0, + "executed": 1692787903 + }, + { + "status": 0, + "executed": 1692788204 + }, + { + "status": 0, + "executed": 1692788504 + }, + { + "status": 0, + "executed": 1692788804 + }, + { + "status": 0, + "executed": 1692789104 + }, + { + "status": 0, + "executed": 1692789404 + }, + { + "status": 0, + "executed": 1692789704 + } + ], + "issued": 1692789704, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.131 ingressOctets=11458194471,egressOctets=399084495,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789704, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.131", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f418c12-09de-4bce-8551-d9c9c50f1d52", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789704 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.202 993", + "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, + "duration": 0.526937104, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.202 ingressOctets=422757294,egressOctets=226349767,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.202", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d4e1284f-df81-4901-ad9b-78192bbc021d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.21 775", + "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, + "duration": 0.500444059, + "executed": 1692789707, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789107 + }, + { + "status": 0, + "executed": 1692789407 + }, + { + "status": 0, + "executed": 1692789707 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.21 ingressOctets=22322521,egressOctets=26585395,ingressErrors=0,egressErrors=0,ingressOctetsv6=286297,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789707, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0b24f38a-3804-4ea1-a15e-9a158d81c497", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.23 620", + "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, + "duration": 0.586115182, + "executed": 1692789434, + "history": [ + { + "status": 0, + "executed": 1692783431 + }, + { + "status": 0, + "executed": 1692783731 + }, + { + "status": 0, + "executed": 1692784031 + }, + { + "status": 0, + "executed": 1692784331 + }, + { + "status": 0, + "executed": 1692784631 + }, + { + "status": 0, + "executed": 1692784931 + }, + { + "status": 0, + "executed": 1692785231 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785832 + }, + { + "status": 0, + "executed": 1692786132 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786733 + }, + { + "status": 0, + "executed": 1692787033 + }, + { + "status": 0, + "executed": 1692787333 + }, + { + "status": 0, + "executed": 1692787633 + }, + { + "status": 0, + "executed": 1692787934 + }, + { + "status": 0, + "executed": 1692788234 + }, + { + "status": 0, + "executed": 1692788534 + }, + { + "status": 0, + "executed": 1692788834 + }, + { + "status": 0, + "executed": 1692789134 + }, + { + "status": 0, + "executed": 1692789434 + } + ], + "issued": 1692789434, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.23 ingressOctets=53268153,egressOctets=56078208,ingressErrors=0,egressErrors=0,ingressOctetsv6=286297,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789434, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6214489c-08b8-4bfa-89e9-481b97b716e7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.240 641", + "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, + "duration": 0.47394147, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.240 ingressOctets=77441443,egressOctets=65786058,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 18338, + "occurrences_watermark": 18338, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.240", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "578ac567-5f8c-4f7f-95f0-9ee6faec38cd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.242 642", + "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, + "duration": 0.448459233, + "executed": 1692789701, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783998 + }, + { + "status": 0, + "executed": 1692784298 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785499 + }, + { + "status": 0, + "executed": 1692785799 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787300 + }, + { + "status": 0, + "executed": 1692787600 + }, + { + "status": 0, + "executed": 1692787900 + }, + { + "status": 0, + "executed": 1692788201 + }, + { + "status": 0, + "executed": 1692788501 + }, + { + "status": 0, + "executed": 1692788801 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789701 + } + ], + "issued": 1692789701, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.242 ingressOctets=43286769,egressOctets=61347437,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789701, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.242", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a790f548-7a0b-442c-8897-a466244fef19", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.30 890", + "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, + "duration": 0.660283507, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.30 ingressOctets=0,egressOctets=40484044,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.30", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "86cc45e4-472a-43a9-b422-83d936c14e1a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.300 510", + "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, + "duration": 0.510352251, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785982 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787182 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789584, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.300 ingressOctets=0,egressOctets=2678172108,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.300", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4935b718-8ceb-400f-ab97-19fee9550ac8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.3019 784", + "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, + "duration": 0.665920947, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.3019 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.3019", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b3c2683c-578e-4a15-9b26-57972421e245", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.302 1347", + "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, + "duration": 0.443589726, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783568 + }, + { + "status": 0, + "executed": 1692783868 + }, + { + "status": 0, + "executed": 1692784168 + }, + { + "status": 0, + "executed": 1692784468 + }, + { + "status": 0, + "executed": 1692784768 + }, + { + "status": 0, + "executed": 1692785068 + }, + { + "status": 0, + "executed": 1692785368 + }, + { + "status": 0, + "executed": 1692785668 + }, + { + "status": 0, + "executed": 1692785969 + }, + { + "status": 0, + "executed": 1692786269 + }, + { + "status": 0, + "executed": 1692786569 + }, + { + "status": 0, + "executed": 1692786869 + }, + { + "status": 0, + "executed": 1692787169 + }, + { + "status": 0, + "executed": 1692787470 + }, + { + "status": 0, + "executed": 1692787770 + }, + { + "status": 0, + "executed": 1692788071 + }, + { + "status": 0, + "executed": 1692788371 + }, + { + "status": 0, + "executed": 1692788671 + }, + { + "status": 0, + "executed": 1692788971 + }, + { + "status": 0, + "executed": 1692789272 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.302 ingressOctets=422660992,egressOctets=226309459,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 18339, + "occurrences_watermark": 18339, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.302", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5f2b53b4-8a96-41c6-9c6b-612b34f9da6e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.3020 699", + "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, + "duration": 0.671346162, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.3020 ingressOctets=1445455395,egressOctets=73803664,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.3020", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c403f046-35e8-42c4-b5d9-7d09fa9ac7f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.3021 643", + "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, + "duration": 0.482606182, + "executed": 1692789595, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784792 + }, + { + "status": 0, + "executed": 1692785092 + }, + { + "status": 0, + "executed": 1692785392 + }, + { + "status": 0, + "executed": 1692785692 + }, + { + "status": 0, + "executed": 1692785993 + }, + { + "status": 0, + "executed": 1692786293 + }, + { + "status": 0, + "executed": 1692786592 + }, + { + "status": 0, + "executed": 1692786893 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787794 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788695 + }, + { + "status": 0, + "executed": 1692788995 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789595 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.3021 ingressOctets=1011998438,egressOctets=38462393742,ingressErrors=0,egressErrors=0,ingressOctetsv6=169078,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789595, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.3021", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1fc2268f-feba-4cf2-8709-ff7aa01a986f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789596 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.310 729", + "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, + "duration": 0.550552895, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783511 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785012 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.310 ingressOctets=919158763,egressOctets=571235124,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.310", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "85c7c4f4-c369-49c2-9cd5-78c6777b7960", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.402 1431", + "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, + "duration": 2.305754087, + "executed": 1692789518, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784113 + }, + { + "status": 0, + "executed": 1692784413 + }, + { + "status": 0, + "executed": 1692784713 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789518 + } + ], + "issued": 1692789517, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.402 ingressOctets=422758202,egressOctets=226319002,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789518, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.402", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c0862a5-1831-44fc-a7bd-9f2f18b693c1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789520 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.95 813", + "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, + "duration": 0.494234958, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.95 ingressOctets=0,egressOctets=469571680,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.95", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "217da682-fb9b-4d8d-a981-861050489498", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/2/9.991 711", + "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, + "duration": 0.430638582, + "executed": 1692789506, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789506 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/2/9.991 ingressOctets=37674475342,egressOctets=1423337297,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789506, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-2-9.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4906e837-be85-481d-9bc0-b4e8499c5848", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/0 602", + "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, + "duration": 0.557917512, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/0 ingressOctets=128,egressOctets=79270667,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d3e47e98-c161-40f7-a52e-5bc20a2ea0ff", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/1 603", + "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, + "duration": 0.494490353, + "executed": 1692789498, + "history": [ + { + "status": 0, + "executed": 1692783493 + }, + { + "status": 0, + "executed": 1692783793 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784994 + }, + { + "status": 0, + "executed": 1692785294 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786195 + }, + { + "status": 0, + "executed": 1692786495 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787096 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787697 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788898 + }, + { + "status": 0, + "executed": 1692789198 + }, + { + "status": 0, + "executed": 1692789498 + } + ], + "issued": 1692789498, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789498, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6e3d1f0c-c4c0-4b2d-b5fa-e8de18675bd6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789498 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/2 604", + "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, + "duration": 0.496322015, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/2 ingressOctets=107369934,egressOctets=91615032,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ef5beb06-0ec4-4cc6-825f-b6bb5d051adf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/3 605", + "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, + "duration": 0.470617139, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/3 ingressOctets=91613135,egressOctets=110856116,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "041b4c2a-645b-4921-adca-0b8c247e01f2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/3.1000 1423", + "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, + "duration": 1.030796757, + "executed": 1692789522, + "history": [ + { + "status": 0, + "executed": 1692783514 + }, + { + "status": 0, + "executed": 1692783814 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785015 + }, + { + "status": 0, + "executed": 1692785315 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787417 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788018 + }, + { + "status": 0, + "executed": 1692788318 + }, + { + "status": 0, + "executed": 1692788618 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789522 + } + ], + "issued": 1692789521, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/3.1000 ingressOctets=14725136,egressOctets=14719680,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789522, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-3.1000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a777e85d-4845-4a31-ba2a-9590494c7898", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789523 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/3.1112 1444", + "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, + "duration": 0.453757999, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786378 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/3.1112 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-3.1112", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "17b872c0-c3c2-464c-ba81-d3e5c2afa022", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/3.1113 1445", + "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, + "duration": 0.484621489, + "executed": 1692789512, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784108 + }, + { + "status": 0, + "executed": 1692784408 + }, + { + "status": 0, + "executed": 1692784708 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785609 + }, + { + "status": 0, + "executed": 1692785909 + }, + { + "status": 0, + "executed": 1692786210 + }, + { + "status": 0, + "executed": 1692786510 + }, + { + "status": 0, + "executed": 1692786810 + }, + { + "status": 0, + "executed": 1692787110 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787711 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788912 + }, + { + "status": 0, + "executed": 1692789212 + }, + { + "status": 0, + "executed": 1692789512 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/3.1113 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789512, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-3.1113", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ac2e7202-7aba-4faf-9d6d-3c99ac05bceb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789512 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/3.1114 1446", + "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, + "duration": 0.58893794, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/3.1114 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-3.1114", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "613d51bc-1daa-482b-8e9f-e4c9c9a93322", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/3.1115 1447", + "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, + "duration": 0.422276476, + "executed": 1692789506, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789506 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/3.1115 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789506, + "occurrences": 18117, + "occurrences_watermark": 18117, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-3.1115", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ed6ab790-7ce4-4b33-ba9c-36445050cf60", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/4 606", + "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, + "duration": 0.498471512, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "62dcb24a-2956-485c-b672-431ff659c537", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/6 608", + "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, + "duration": 0.473931519, + "executed": 1692789510, + "history": [ + { + "status": 0, + "executed": 1692783505 + }, + { + "status": 0, + "executed": 1692783805 + }, + { + "status": 0, + "executed": 1692784106 + }, + { + "status": 0, + "executed": 1692784406 + }, + { + "status": 0, + "executed": 1692784706 + }, + { + "status": 0, + "executed": 1692785006 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785607 + }, + { + "status": 0, + "executed": 1692785907 + }, + { + "status": 0, + "executed": 1692786208 + }, + { + "status": 0, + "executed": 1692786508 + }, + { + "status": 0, + "executed": 1692786808 + }, + { + "status": 0, + "executed": 1692787108 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787709 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788910 + }, + { + "status": 0, + "executed": 1692789210 + }, + { + "status": 0, + "executed": 1692789510 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789510, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6d7a9607-2d5d-476a-904a-b6ad87992ad1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789510 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/7 609", + "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, + "duration": 0.508376798, + "executed": 1692789473, + "history": [ + { + "status": 0, + "executed": 1692783468 + }, + { + "status": 0, + "executed": 1692783768 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784369 + }, + { + "status": 0, + "executed": 1692784669 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785570 + }, + { + "status": 0, + "executed": 1692785870 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786471 + }, + { + "status": 0, + "executed": 1692786771 + }, + { + "status": 0, + "executed": 1692787071 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787672 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788873 + }, + { + "status": 0, + "executed": 1692789173 + }, + { + "status": 0, + "executed": 1692789473 + } + ], + "issued": 1692789473, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789473, + "occurrences": 18116, + "occurrences_watermark": 18116, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e18e46ad-d1f6-4683-a136-d2cd3956714a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789474 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/8 610", + "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, + "duration": 0.438332046, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b2c301e1-4717-4739-ba99-8ab3de9028d5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net ge-0/3/9 611", + "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, + "duration": 0.457786401, + "executed": 1692789506, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789506 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=ge-0/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789506, + "occurrences": 18339, + "occurrences_watermark": 18339, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-ge-0-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6b44517a-fd1c-4756-a7c1-54090de1b205", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net gr-1/3/0.0 1194", + "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, + "duration": 0.513736587, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788167 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=gr-1/3/0.0 ingressOctets=495940520,egressOctets=515666870,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-gr-1-3-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b506e8b5-eede-4225-9da4-49239d1f3ec9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net irb.999 696", + "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, + "duration": 0.486799994, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=irb.999 ingressOctets=932997717,egressOctets=5556943346,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-irb.999", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4aa61d33-97e7-4768-8f41-1df66cdcc280", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-1/3/0 1225", + "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, + "duration": 0.533788531, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=lt-1/3/0 ingressOctets=6727963008851,egressOctets=6730991403104,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-lt-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6d6c2fd4-955c-476f-806c-7b17c3bcd88b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-1/3/0.16 1228", + "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, + "duration": 0.614692095, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=lt-1/3/0.16 ingressOctets=5176432718646,egressOctets=1554399074130,ingressErrors=0,egressErrors=0,ingressOctetsv6=3085211556086,egressOctetsv6=1380372198,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-lt-1-3-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5ddb3151-60fa-4220-a8be-2491b0559f27", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-1/3/0.61 1229", + "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, + "duration": 0.525866822, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=lt-1/3/0.61 ingressOctets=1551521194365,egressOctets=5176472303754,ingressErrors=0,egressErrors=0,ingressOctetsv6=11283904507,egressOctetsv6=3086779636350,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 18116, + "occurrences_watermark": 18116, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-lt-1-3-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7f537638-9e1e-41ad-a320-827ac5bf4db7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-3/0/0 1363", + "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, + "duration": 3.804885262, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=lt-3/0/0 ingressOctets=391952661,egressOctets=438363435,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-lt-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2466d45a-23c3-4294-ae77-08736d561561", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789522 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-3/0/0.12 1369", + "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, + "duration": 0.472994757, + "executed": 1692789507, + "history": [ + { + "status": 0, + "executed": 1692783503 + }, + { + "status": 0, + "executed": 1692783803 + }, + { + "status": 0, + "executed": 1692784103 + }, + { + "status": 0, + "executed": 1692784403 + }, + { + "status": 0, + "executed": 1692784703 + }, + { + "status": 0, + "executed": 1692785004 + }, + { + "status": 0, + "executed": 1692785304 + }, + { + "status": 0, + "executed": 1692785604 + }, + { + "status": 0, + "executed": 1692785904 + }, + { + "status": 0, + "executed": 1692786205 + }, + { + "status": 0, + "executed": 1692786505 + }, + { + "status": 0, + "executed": 1692786805 + }, + { + "status": 0, + "executed": 1692787105 + }, + { + "status": 0, + "executed": 1692787405 + }, + { + "status": 0, + "executed": 1692787706 + }, + { + "status": 0, + "executed": 1692788006 + }, + { + "status": 0, + "executed": 1692788306 + }, + { + "status": 0, + "executed": 1692788606 + }, + { + "status": 0, + "executed": 1692788907 + }, + { + "status": 0, + "executed": 1692789207 + }, + { + "status": 0, + "executed": 1692789507 + } + ], + "issued": 1692789506, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=lt-3/0/0.12 ingressOctets=24731865,egressOctets=32807080,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789507, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-lt-3-0-0.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b5d1b7a9-4cff-40be-9591-d9c66a7bfc39", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789507 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-3/0/0.13 1370", + "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, + "duration": 0.476980948, + "executed": 1692789509, + "history": [ + { + "status": 0, + "executed": 1692783505 + }, + { + "status": 0, + "executed": 1692783805 + }, + { + "status": 0, + "executed": 1692784106 + }, + { + "status": 0, + "executed": 1692784406 + }, + { + "status": 0, + "executed": 1692784706 + }, + { + "status": 0, + "executed": 1692785006 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785606 + }, + { + "status": 0, + "executed": 1692785906 + }, + { + "status": 0, + "executed": 1692786207 + }, + { + "status": 0, + "executed": 1692786507 + }, + { + "status": 0, + "executed": 1692786807 + }, + { + "status": 0, + "executed": 1692787107 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787708 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788909 + }, + { + "status": 0, + "executed": 1692789209 + }, + { + "status": 0, + "executed": 1692789509 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=lt-3/0/0.13 ingressOctets=74559342,egressOctets=277317372,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789509, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-lt-3-0-0.13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2a14c23e-5038-4961-8904-a212882ccd77", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789510 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net lt-3/0/0.21 1371", + "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, + "duration": 0.476239826, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=lt-3/0/0.21 ingressOctets=25698679,egressOctets=31844106,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-lt-3-0-0.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "220efa4d-4f84-4189-9285-c939b7b37f54", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/0 847", + "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, + "duration": 3.271569347, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/0/0 ingressOctets=93792255933353,egressOctets=1082127393827912,ingressErrors=192,egressErrors=0,ingressDiscards=0,egressDiscards=19114\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "45b60a3e-4d39-496a-b0fa-cf322d76bdca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789522 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/0.1001 1067", + "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, + "duration": 0.519243207, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/0/0.1001 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-0-0.1001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2e55d82b-e182-42f5-80c2-4c1974f0440a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/0.111 1063", + "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, + "duration": 0.540699384, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/0/0.111 ingressOctets=10884450281440,egressOctets=10338444285395,ingressErrors=0,egressErrors=0,ingressOctetsv6=519366244129,egressOctetsv6=6216916150944,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 18336, + "occurrences_watermark": 18336, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-0-0.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b4ded25b-b6ef-47ef-956c-c82f46163c32", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/0.200 1066", + "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, + "duration": 0.549866063, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783820 + }, + { + "status": 0, + "executed": 1692784120 + }, + { + "status": 0, + "executed": 1692784420 + }, + { + "status": 0, + "executed": 1692784720 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785621 + }, + { + "status": 0, + "executed": 1692785921 + }, + { + "status": 0, + "executed": 1692786222 + }, + { + "status": 0, + "executed": 1692786522 + }, + { + "status": 0, + "executed": 1692786822 + }, + { + "status": 0, + "executed": 1692787122 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787723 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788924 + }, + { + "status": 0, + "executed": 1692789224 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/0/0.200 ingressOctets=82907937675970,egressOctets=1071790371127187,ingressErrors=0,egressErrors=0,ingressOctetsv6=11039015687764,egressOctetsv6=140628535575762,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-0-0.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc5bf9f0-9509-488e-86bf-051640f91761", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/1 848", + "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, + "duration": 1.1951454479999999, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785629 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "76a986ab-c819-4508-aab0-c283f520abf6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/2 849", + "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, + "duration": 0.516443062, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/0/2 ingressOctets=606751082897,egressOctets=310019127058,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 18337, + "occurrences_watermark": 18337, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7432a703-86c1-4e81-b215-adadc3cc0800", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/2.10 1161", + "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, + "duration": 0.453570458, + "executed": 1692789696, + "history": [ + { + "status": 0, + "executed": 1692783694 + }, + { + "status": 0, + "executed": 1692783994 + }, + { + "status": 0, + "executed": 1692784294 + }, + { + "status": 0, + "executed": 1692784594 + }, + { + "status": 0, + "executed": 1692784894 + }, + { + "status": 0, + "executed": 1692785194 + }, + { + "status": 0, + "executed": 1692785494 + }, + { + "status": 0, + "executed": 1692785795 + }, + { + "status": 0, + "executed": 1692786095 + }, + { + "status": 0, + "executed": 1692786395 + }, + { + "status": 0, + "executed": 1692786695 + }, + { + "status": 0, + "executed": 1692786995 + }, + { + "status": 0, + "executed": 1692787296 + }, + { + "status": 0, + "executed": 1692787596 + }, + { + "status": 0, + "executed": 1692787896 + }, + { + "status": 0, + "executed": 1692788196 + }, + { + "status": 0, + "executed": 1692788496 + }, + { + "status": 0, + "executed": 1692788797 + }, + { + "status": 0, + "executed": 1692789097 + }, + { + "status": 0, + "executed": 1692789397 + }, + { + "status": 0, + "executed": 1692789696 + } + ], + "issued": 1692789696, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/0/2.10 ingressOctets=606751082869,egressOctets=309941258821,ingressErrors=0,egressErrors=0,ingressOctetsv6=952,egressOctetsv6=2098,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789696, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-0-2.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "baa3a5dd-9256-4ae6-bff1-d38d081d8fa0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789697 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/2.702 986", + "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, + "duration": 0.41807398, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787434 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788035 + }, + { + "status": 0, + "executed": 1692788335 + }, + { + "status": 0, + "executed": 1692788635 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789535, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/0/2.702 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-0-2.702", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9b44c8b6-70c3-41c0-a2a8-2a08e51afbc6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789536 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/0/3 850", + "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, + "duration": 0.475162094, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787867 + }, + { + "status": 0, + "executed": 1692788167 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 18119, + "occurrences_watermark": 18119, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "32d999c3-cbd8-41a0-97bf-9a580d2b9fc7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/2/0 550", + "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, + "duration": 0.503724116, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/2/0 ingressOctets=926584377067885,egressOctets=1176973335351522,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aa8cddfd-a0b1-4aae-be9c-8c06237997a1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/2/1 551", + "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, + "duration": 2.8316243009999997, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/2/1 ingressOctets=910000650814689,egressOctets=1161366418024117,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "388e5b00-040d-4e08-99e7-77d090f0bae9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789521 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/2/2 852", + "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, + "duration": 1.8658949329999999, + "executed": 1692789518, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784113 + }, + { + "status": 0, + "executed": 1692784413 + }, + { + "status": 0, + "executed": 1692784713 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789518 + } + ], + "issued": 1692789517, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/2/2 ingressOctets=711680008149377,egressOctets=901166108891892,ingressErrors=457,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789518, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bbe23ae2-30d2-4f13-a2cb-6f82f010f765", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789519 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-1/2/3 1040", + "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, + "duration": 0.467516277, + "executed": 1692789682, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786381 + }, + { + "status": 0, + "executed": 1692786681 + }, + { + "status": 0, + "executed": 1692786981 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788482 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789682 + } + ], + "issued": 1692789682, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-1/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789682, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "45dfadcd-9da1-445c-b329-60d859db5d5f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789683 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/0/0 904", + "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, + "duration": 0.449624968, + "executed": 1692789690, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783987 + }, + { + "status": 0, + "executed": 1692784287 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785788 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786688 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787289 + }, + { + "status": 0, + "executed": 1692787589 + }, + { + "status": 0, + "executed": 1692787889 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788790 + }, + { + "status": 0, + "executed": 1692789090 + }, + { + "status": 0, + "executed": 1692789390 + }, + { + "status": 0, + "executed": 1692789690 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-10/0/0 ingressOctets=210735331778,egressOctets=7307800921665,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789690, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-10-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9848ce50-ed5d-4d35-b264-8ad2b6414bbd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789690 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/0/1 901", + "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, + "duration": 0.500214735, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-10/0/1 ingressOctets=336144283139,egressOctets=5101199479,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-10-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "03914ac2-5b7b-41c6-9743-ba596e9c78e0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/0/2 902", + "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, + "duration": 1.9376011389999999, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-10/0/2 ingressOctets=264987708308312,egressOctets=42224163340933,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-10-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d784715f-3849-4056-bc1f-28a69373df23", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789521 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/0/3 903", + "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, + "duration": 0.469085243, + "executed": 1692789516, + "history": [ + { + "status": 0, + "executed": 1692783511 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785012 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785613 + }, + { + "status": 0, + "executed": 1692785913 + }, + { + "status": 0, + "executed": 1692786214 + }, + { + "status": 0, + "executed": 1692786514 + }, + { + "status": 0, + "executed": 1692786814 + }, + { + "status": 0, + "executed": 1692787114 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787715 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788916 + }, + { + "status": 0, + "executed": 1692789216 + }, + { + "status": 0, + "executed": 1692789516 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-10/0/3 ingressOctets=182689135757,egressOctets=5914980030,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789516, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-10-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "033c1272-d5f6-4025-b013-c3f846f428f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/2/0 913", + "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, + "duration": 2.147456193, + "executed": 1692789518, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789518 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-10/2/0 ingressOctets=140151454185,egressOctets=744161696597,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789518, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-10-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2c75731c-ab14-4d2b-8404-ce32ad0a094b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789520 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/2/1 910", + "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, + "duration": 0.566968183, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-10/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-10-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "17649a34-7e77-4309-a03f-948f1e67bff8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/2/2 911", + "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, + "duration": 0.469097042, + "executed": 1692789678, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786675 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789678 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-10/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789678, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-10-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e42fc516-6cc7-41ad-8e54-da85236a4946", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-10/2/3 912", + "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, + "duration": 0.474891776, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783690 + }, + { + "status": 0, + "executed": 1692783990 + }, + { + "status": 0, + "executed": 1692784290 + }, + { + "status": 0, + "executed": 1692784591 + }, + { + "status": 0, + "executed": 1692784891 + }, + { + "status": 0, + "executed": 1692785191 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786092 + }, + { + "status": 0, + "executed": 1692786392 + }, + { + "status": 0, + "executed": 1692786692 + }, + { + "status": 0, + "executed": 1692786992 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-10/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 18119, + "occurrences_watermark": 18119, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-10-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d1d5ae88-d9d0-43f0-aa38-31c8c37ad986", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/0 743", + "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, + "duration": 0.482457875, + "executed": 1692789427, + "history": [ + { + "status": 0, + "executed": 1692783423 + }, + { + "status": 0, + "executed": 1692783723 + }, + { + "status": 0, + "executed": 1692784023 + }, + { + "status": 0, + "executed": 1692784323 + }, + { + "status": 0, + "executed": 1692784624 + }, + { + "status": 0, + "executed": 1692784924 + }, + { + "status": 0, + "executed": 1692785224 + }, + { + "status": 0, + "executed": 1692785524 + }, + { + "status": 0, + "executed": 1692785824 + }, + { + "status": 0, + "executed": 1692786125 + }, + { + "status": 0, + "executed": 1692786425 + }, + { + "status": 0, + "executed": 1692786725 + }, + { + "status": 0, + "executed": 1692787025 + }, + { + "status": 0, + "executed": 1692787326 + }, + { + "status": 0, + "executed": 1692787626 + }, + { + "status": 0, + "executed": 1692787926 + }, + { + "status": 0, + "executed": 1692788226 + }, + { + "status": 0, + "executed": 1692788526 + }, + { + "status": 0, + "executed": 1692788827 + }, + { + "status": 0, + "executed": 1692789127 + }, + { + "status": 0, + "executed": 1692789427 + } + ], + "issued": 1692789427, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789427, + "occurrences": 18117, + "occurrences_watermark": 18117, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "af595568-c81b-46a5-b901-f1c4ee9cd815", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789428 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/1 745", + "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, + "duration": 0.475115486, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785326 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787428 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788029 + }, + { + "status": 0, + "executed": 1692788329 + }, + { + "status": 0, + "executed": 1692788629 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789529, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "202903f0-0640-4c10-bb61-1c2b696aa40c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/2 748", + "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, + "duration": 0.446542821, + "executed": 1692789516, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785613 + }, + { + "status": 0, + "executed": 1692785913 + }, + { + "status": 0, + "executed": 1692786214 + }, + { + "status": 0, + "executed": 1692786514 + }, + { + "status": 0, + "executed": 1692786814 + }, + { + "status": 0, + "executed": 1692787114 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787715 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788916 + }, + { + "status": 0, + "executed": 1692789216 + }, + { + "status": 0, + "executed": 1692789516 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/2 ingressOctets=990526261254,egressOctets=4169495112998,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789516, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "68a714ba-7ff7-49b4-bba4-d694e3820bf8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/2.1 1178", + "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, + "duration": 0.457147778, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783857 + }, + { + "status": 0, + "executed": 1692784157 + }, + { + "status": 0, + "executed": 1692784457 + }, + { + "status": 0, + "executed": 1692784757 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/2.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-2.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5dca5a56-add7-4f48-879a-0e7c67be1412", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789562 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/2.2200 1342", + "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, + "duration": 0.454410069, + "executed": 1692789535, + "history": [ + { + "status": 0, + "executed": 1692783531 + }, + { + "status": 0, + "executed": 1692783831 + }, + { + "status": 0, + "executed": 1692784131 + }, + { + "status": 0, + "executed": 1692784431 + }, + { + "status": 0, + "executed": 1692784731 + }, + { + "status": 0, + "executed": 1692785032 + }, + { + "status": 0, + "executed": 1692785332 + }, + { + "status": 0, + "executed": 1692785632 + }, + { + "status": 0, + "executed": 1692785932 + }, + { + "status": 0, + "executed": 1692786233 + }, + { + "status": 0, + "executed": 1692786533 + }, + { + "status": 0, + "executed": 1692786833 + }, + { + "status": 0, + "executed": 1692787133 + }, + { + "status": 0, + "executed": 1692787433 + }, + { + "status": 0, + "executed": 1692787734 + }, + { + "status": 0, + "executed": 1692788034 + }, + { + "status": 0, + "executed": 1692788334 + }, + { + "status": 0, + "executed": 1692788634 + }, + { + "status": 0, + "executed": 1692788935 + }, + { + "status": 0, + "executed": 1692789235 + }, + { + "status": 0, + "executed": 1692789535 + } + ], + "issued": 1692789534, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/2.2200 ingressOctets=64006878771,egressOctets=1325315088998,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789535, + "occurrences": 18115, + "occurrences_watermark": 18115, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-2.2200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "639d1183-b8fa-4c51-a70e-616398382575", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789535 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/2.2210 1434", + "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, + "duration": 0.466389092, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/2.2210 ingressOctets=926519713949,egressOctets=2844246210270,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-2.2210", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1b4059a6-579d-411a-9576-48f6dc38b7e1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/3 749", + "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, + "duration": 0.455261059, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785326 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787428 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788029 + }, + { + "status": 0, + "executed": 1692788329 + }, + { + "status": 0, + "executed": 1692788629 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789529, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5797bc84-ee64-404c-be8e-97ce4ae3017c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/4 1449", + "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, + "duration": 0.514324995, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/4 ingressOctets=6650678939,egressOctets=15021677299,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 18334, + "occurrences_watermark": 18334, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7cc254c6-4c0b-4eba-83ab-a2e43d9a9f72", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/4.0 1001", + "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, + "duration": 0.475324769, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783844 + }, + { + "status": 0, + "executed": 1692784144 + }, + { + "status": 0, + "executed": 1692784444 + }, + { + "status": 0, + "executed": 1692784744 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787446 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788047 + }, + { + "status": 0, + "executed": 1692788347 + }, + { + "status": 0, + "executed": 1692788647 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/4.0 ingressOctets=6650701615,egressOctets=15033595908,ingressErrors=0,egressErrors=0,ingressOctetsv6=2515113282,egressOctetsv6=12468292961,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "68e071ee-b23e-48bc-a9f7-2d0a98194e27", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/5 1452", + "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, + "duration": 0.512224289, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783833 + }, + { + "status": 0, + "executed": 1692784133 + }, + { + "status": 0, + "executed": 1692784433 + }, + { + "status": 0, + "executed": 1692784733 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/5 ingressOctets=114440866762,egressOctets=92961589828,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 18115, + "occurrences_watermark": 18115, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3a400a73-2a33-40c4-8371-de30dc936710", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/5.0 1004", + "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, + "duration": 0.475606193, + "executed": 1692789545, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789545 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/5.0 ingressOctets=114441206800,egressOctets=92973693026,ingressErrors=0,egressErrors=0,ingressOctetsv6=102456253894,egressOctetsv6=80886180726,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789545, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8b4a6788-045a-4d40-a7d8-a7a228e71588", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/6 1450", + "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, + "duration": 0.49209216, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783833 + }, + { + "status": 0, + "executed": 1692784133 + }, + { + "status": 0, + "executed": 1692784433 + }, + { + "status": 0, + "executed": 1692784733 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/6 ingressOctets=337751085,egressOctets=300409978,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "97dd3a4f-b2a9-412a-b353-b7bd8538796d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/6.0 1477", + "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, + "duration": 0.448178066, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/6.0 ingressOctets=337737364,egressOctets=312266577,ingressErrors=0,egressErrors=0,ingressOctetsv6=22553725,egressOctetsv6=7823529,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f5b9ee67-a3ed-4526-812f-890bf9331fc5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/7 1451", + "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, + "duration": 0.532009816, + "executed": 1692789710, + "history": [ + { + "status": 0, + "executed": 1692783705 + }, + { + "status": 0, + "executed": 1692784006 + }, + { + "status": 0, + "executed": 1692784306 + }, + { + "status": 0, + "executed": 1692784606 + }, + { + "status": 0, + "executed": 1692784906 + }, + { + "status": 0, + "executed": 1692785206 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785807 + }, + { + "status": 0, + "executed": 1692786107 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786709 + }, + { + "status": 0, + "executed": 1692787009 + }, + { + "status": 0, + "executed": 1692787309 + }, + { + "status": 0, + "executed": 1692787609 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788210 + }, + { + "status": 0, + "executed": 1692788510 + }, + { + "status": 0, + "executed": 1692788810 + }, + { + "status": 0, + "executed": 1692789110 + }, + { + "status": 0, + "executed": 1692789410 + }, + { + "status": 0, + "executed": 1692789710 + } + ], + "issued": 1692789710, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/7 ingressOctets=68747883674197,egressOctets=128425333275623,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=2861458\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789710, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "20b4d0ba-a141-4fc9-8164-a45a25c7947a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789710 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/0/7.0 1478", + "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, + "duration": 0.464374844, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783857 + }, + { + "status": 0, + "executed": 1692784157 + }, + { + "status": 0, + "executed": 1692784457 + }, + { + "status": 0, + "executed": 1692784757 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/0/7.0 ingressOctets=68747883658362,egressOctets=128425345124611,ingressErrors=0,egressErrors=0,ingressOctetsv6=34212050388203,egressOctetsv6=63003441815858,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 18336, + "occurrences_watermark": 18336, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-0-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "270ed090-f0b9-4656-8884-091214c15502", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789562 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/0 1457", + "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, + "duration": 0.532568895, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "33557f86-7c86-4b33-9ed3-f4875595ffdb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/1 1458", + "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, + "duration": 0.462581376, + "executed": 1692789541, + "history": [ + { + "status": 0, + "executed": 1692783537 + }, + { + "status": 0, + "executed": 1692783838 + }, + { + "status": 0, + "executed": 1692784138 + }, + { + "status": 0, + "executed": 1692784438 + }, + { + "status": 0, + "executed": 1692784738 + }, + { + "status": 0, + "executed": 1692785038 + }, + { + "status": 0, + "executed": 1692785338 + }, + { + "status": 0, + "executed": 1692785638 + }, + { + "status": 0, + "executed": 1692785938 + }, + { + "status": 0, + "executed": 1692786239 + }, + { + "status": 0, + "executed": 1692786539 + }, + { + "status": 0, + "executed": 1692786839 + }, + { + "status": 0, + "executed": 1692787139 + }, + { + "status": 0, + "executed": 1692787440 + }, + { + "status": 0, + "executed": 1692787740 + }, + { + "status": 0, + "executed": 1692788041 + }, + { + "status": 0, + "executed": 1692788341 + }, + { + "status": 0, + "executed": 1692788641 + }, + { + "status": 0, + "executed": 1692788941 + }, + { + "status": 0, + "executed": 1692789241 + }, + { + "status": 0, + "executed": 1692789541 + } + ], + "issued": 1692789541, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/1/1 ingressOctets=147973155252,egressOctets=934785028795,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789541, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3713c7a5-e3a8-40b9-9a53-595ffce8687d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789542 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/2 1459", + "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, + "duration": 0.450274711, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/1/2 ingressOctets=274291336098,egressOctets=3889100920,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "406b1531-6214-46d2-aa5e-5b5993f22fba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/3 1460", + "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, + "duration": 0.49201942, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/1/3 ingressOctets=353798428650,egressOctets=6583581004,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 18345, + "occurrences_watermark": 18345, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "127dffe8-22df-41f5-96e4-e59a369261f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/4 1461", + "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, + "duration": 0.450839037, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789102 + }, + { + "status": 0, + "executed": 1692789402 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/1/4 ingressOctets=121865867283,egressOctets=3856944388,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0ae49682-b893-4815-80d5-99a2329c87a1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789702 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/5 1462", + "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, + "duration": 0.504018131, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786591 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/1/5 ingressOctets=1174389360855078,egressOctets=3921970023138,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cc2b6e17-5c9e-43a5-808c-4d159ba41619", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/5.0 773", + "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, + "duration": 0.54069325, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/1/5.0 ingressOctets=1174389360855180,egressOctets=3921970026824,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 18346, + "occurrences_watermark": 18346, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-1-5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bf4af4ad-a66f-4e56-b4e9-aee08250926f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/6 1463", + "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, + "duration": 0.535954119, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786591 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788393 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/1/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-1-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e401da1e-29a0-4277-a58e-ab2ba0ef8225", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/1/7 1464", + "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, + "duration": 0.625433443, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/1/7 ingressOctets=49952429701166,egressOctets=17145902871913,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 1069, + "occurrences_watermark": 1069, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-1-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3bcf0973-463a-494b-a1d4-37566128c276", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/0 751", + "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, + "duration": 0.494599066, + "executed": 1692789585, + "history": [ + { + "status": 0, + "executed": 1692783581 + }, + { + "status": 0, + "executed": 1692783881 + }, + { + "status": 0, + "executed": 1692784181 + }, + { + "status": 0, + "executed": 1692784481 + }, + { + "status": 0, + "executed": 1692784781 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786582 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787183 + }, + { + "status": 0, + "executed": 1692787483 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788084 + }, + { + "status": 0, + "executed": 1692788384 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789285 + }, + { + "status": 0, + "executed": 1692789585 + } + ], + "issued": 1692789585, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/0 ingressOctets=211726903246,egressOctets=7351982049671,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789585, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d6417082-def0-4bec-8d0c-6c04f6ff9405", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789586 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/1 752", + "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, + "duration": 2.541859568, + "executed": 1692789522, + "history": [ + { + "status": 0, + "executed": 1692783514 + }, + { + "status": 0, + "executed": 1692783814 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785015 + }, + { + "status": 0, + "executed": 1692785315 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787417 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788018 + }, + { + "status": 0, + "executed": 1692788318 + }, + { + "status": 0, + "executed": 1692788618 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789522 + } + ], + "issued": 1692789522, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/1 ingressOctets=205454275863,egressOctets=6313275427458,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789522, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a14073cd-5233-4358-b440-28e6ab80af86", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/2 757", + "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, + "duration": 0.46142515, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783845 + }, + { + "status": 0, + "executed": 1692784145 + }, + { + "status": 0, + "executed": 1692784445 + }, + { + "status": 0, + "executed": 1692784745 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786245 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787447 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788048 + }, + { + "status": 0, + "executed": 1692788348 + }, + { + "status": 0, + "executed": 1692788648 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/2 ingressOctets=16028373484,egressOctets=33593569221,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 18119, + "occurrences_watermark": 18119, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ec2a02f-ea1b-4c5e-8ab8-817a789bc511", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/2.0 1011", + "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, + "duration": 0.425230968, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/2.0 ingressOctets=16028347842,egressOctets=33605462739,ingressErrors=0,egressErrors=0,ingressOctetsv6=9529426784,egressOctetsv6=27446825489,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2e694c69-b2cc-48a1-8b77-818558d6b9a6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/3 759", + "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, + "duration": 0.467534246, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/3 ingressOctets=202457967323,egressOctets=192701834048,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e95cc836-fb46-48b1-9967-8fb4610cb027", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/3.22 1023", + "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, + "duration": 0.443180674, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/3.22 ingressOctets=198797235532,egressOctets=191023364546,ingressErrors=0,egressErrors=0,ingressOctetsv6=67144485909,egressOctetsv6=64714253444,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-3.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "56b69416-f009-4ed3-b254-60ec868dbca7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/3.902 1024", + "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, + "duration": 0.419757523, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/3.902 ingressOctets=54727708,egressOctets=19620,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 18353, + "occurrences_watermark": 18353, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-3.902", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f4008f5f-5081-47ec-86f9-02cc02ba998c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/3.906 1025", + "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, + "duration": 0.507848192, + "executed": 1692789590, + "history": [ + { + "status": 0, + "executed": 1692783586 + }, + { + "status": 0, + "executed": 1692783886 + }, + { + "status": 0, + "executed": 1692784186 + }, + { + "status": 0, + "executed": 1692784486 + }, + { + "status": 0, + "executed": 1692784786 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785988 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786587 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787488 + }, + { + "status": 0, + "executed": 1692787789 + }, + { + "status": 0, + "executed": 1692788089 + }, + { + "status": 0, + "executed": 1692788389 + }, + { + "status": 0, + "executed": 1692788690 + }, + { + "status": 0, + "executed": 1692788990 + }, + { + "status": 0, + "executed": 1692789290 + }, + { + "status": 0, + "executed": 1692789590 + } + ], + "issued": 1692789590, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/3.906 ingressOctets=3589811808,egressOctets=1590230672,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789590, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-3.906", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d5397200-4ecb-4a6c-a7fb-ca00613a5720", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789590 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/4 1468", + "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, + "duration": 0.437769544, + "executed": 1692789613, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789613 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/4 ingressOctets=246002398247370,egressOctets=229529752889484,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789613, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d3974f06-6bb4-44f8-a66e-298d7f47f19e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/4.0 1493", + "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, + "duration": 0.496687888, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/4.0 ingressOctets=245997069994837,egressOctets=229528176244480,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0fbb63ba-061e-491b-81b9-a1afee6494fb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/5 1465", + "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, + "duration": 0.628905653, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783515 + }, + { + "status": 0, + "executed": 1692783815 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785016 + }, + { + "status": 0, + "executed": 1692785316 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787418 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788019 + }, + { + "status": 0, + "executed": 1692788319 + }, + { + "status": 0, + "executed": 1692788619 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/5 ingressOctets=9832342467452,egressOctets=18734813321,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "00878944-71f7-4349-814c-4dd18a720a73", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/5.1500 1494", + "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, + "duration": 0.522651068, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/5.1500 ingressOctets=9815238908593,egressOctets=470314710,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-5.1500", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f37bd82f-f2dd-4513-8132-4b75dd96a8af", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/5.2369 1495", + "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, + "duration": 0.446951776, + "executed": 1692789573, + "history": [ + { + "status": 0, + "executed": 1692783569 + }, + { + "status": 0, + "executed": 1692783869 + }, + { + "status": 0, + "executed": 1692784169 + }, + { + "status": 0, + "executed": 1692784469 + }, + { + "status": 0, + "executed": 1692784769 + }, + { + "status": 0, + "executed": 1692785070 + }, + { + "status": 0, + "executed": 1692785370 + }, + { + "status": 0, + "executed": 1692785670 + }, + { + "status": 0, + "executed": 1692785970 + }, + { + "status": 0, + "executed": 1692786271 + }, + { + "status": 0, + "executed": 1692786571 + }, + { + "status": 0, + "executed": 1692786871 + }, + { + "status": 0, + "executed": 1692787171 + }, + { + "status": 0, + "executed": 1692787471 + }, + { + "status": 0, + "executed": 1692787772 + }, + { + "status": 0, + "executed": 1692788072 + }, + { + "status": 0, + "executed": 1692788372 + }, + { + "status": 0, + "executed": 1692788673 + }, + { + "status": 0, + "executed": 1692788973 + }, + { + "status": 0, + "executed": 1692789273 + }, + { + "status": 0, + "executed": 1692789573 + } + ], + "issued": 1692789573, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/5.2369 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789573, + "occurrences": 18339, + "occurrences_watermark": 18339, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-5.2369", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f77329f3-13ec-4cd5-a1dc-3a680d7b491c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789574 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/5.25 766", + "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, + "duration": 0.484522868, + "executed": 1692789631, + "history": [ + { + "status": 0, + "executed": 1692783628 + }, + { + "status": 0, + "executed": 1692783928 + }, + { + "status": 0, + "executed": 1692784228 + }, + { + "status": 0, + "executed": 1692784528 + }, + { + "status": 0, + "executed": 1692784828 + }, + { + "status": 0, + "executed": 1692785128 + }, + { + "status": 0, + "executed": 1692785428 + }, + { + "status": 0, + "executed": 1692785728 + }, + { + "status": 0, + "executed": 1692786029 + }, + { + "status": 0, + "executed": 1692786329 + }, + { + "status": 0, + "executed": 1692786629 + }, + { + "status": 0, + "executed": 1692786929 + }, + { + "status": 0, + "executed": 1692787229 + }, + { + "status": 0, + "executed": 1692787530 + }, + { + "status": 0, + "executed": 1692787830 + }, + { + "status": 0, + "executed": 1692788130 + }, + { + "status": 0, + "executed": 1692788431 + }, + { + "status": 0, + "executed": 1692788731 + }, + { + "status": 0, + "executed": 1692789031 + }, + { + "status": 0, + "executed": 1692789331 + }, + { + "status": 0, + "executed": 1692789631 + } + ], + "issued": 1692789631, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/5.25 ingressOctets=17103903829,egressOctets=18264868848,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789631, + "occurrences": 18340, + "occurrences_watermark": 18340, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-5.25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "378cb161-bba4-42bc-a00c-1ec809cb8306", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789632 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/6 1466", + "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, + "duration": 0.509916378, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789016 + }, + { + "status": 0, + "executed": 1692789316 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789616, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/6 ingressOctets=0,egressOctets=260828924,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b7f55d81-eb89-45a7-9bc0-b23ba239b011", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/6.196 1499", + "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, + "duration": 0.688654514, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/6.196 ingressOctets=0,egressOctets=187339048,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 1069, + "occurrences_watermark": 1069, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-6.196", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e99c9031-5c57-4c9a-9f46-7cc6fb0f1805", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/7 1467", + "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, + "duration": 0.448048254, + "executed": 1692789644, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785440 + }, + { + "status": 0, + "executed": 1692785740 + }, + { + "status": 0, + "executed": 1692786041 + }, + { + "status": 0, + "executed": 1692786341 + }, + { + "status": 0, + "executed": 1692786642 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787241 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787842 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789644 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/7 ingressOctets=51538611842832,egressOctets=4662922436,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789644, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a348cf45-f9a2-491e-9d0c-3f3f36426d25", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/7.1007 1506", + "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, + "duration": 2.3112152, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/7.1007 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-7.1007", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2f55b475-25db-419d-b7a2-a4988915fabf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789521 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/2/7.3004 1507", + "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, + "duration": 0.538789186, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783496 + }, + { + "status": 0, + "executed": 1692783796 + }, + { + "status": 0, + "executed": 1692784097 + }, + { + "status": 0, + "executed": 1692784397 + }, + { + "status": 0, + "executed": 1692784697 + }, + { + "status": 0, + "executed": 1692784997 + }, + { + "status": 0, + "executed": 1692785297 + }, + { + "status": 0, + "executed": 1692785598 + }, + { + "status": 0, + "executed": 1692785898 + }, + { + "status": 0, + "executed": 1692786198 + }, + { + "status": 0, + "executed": 1692786498 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787099 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787700 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788901 + }, + { + "status": 0, + "executed": 1692789201 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/2/7.3004 ingressOctets=51538611829528,egressOctets=4585652254,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-2-7.3004", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0a108c1e-912b-46a5-a1fe-96e403d22062", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/0 1469", + "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, + "duration": 0.467424792, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783621 + }, + { + "status": 0, + "executed": 1692783921 + }, + { + "status": 0, + "executed": 1692784221 + }, + { + "status": 0, + "executed": 1692784521 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785422 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786323 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786923 + }, + { + "status": 0, + "executed": 1692787223 + }, + { + "status": 0, + "executed": 1692787524 + }, + { + "status": 0, + "executed": 1692787824 + }, + { + "status": 0, + "executed": 1692788124 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789025 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789625, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/0 ingressOctets=262680140656838,egressOctets=309924276,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1f968ea2-249a-4c9a-8584-f0aadbb6d507", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/1 1470", + "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, + "duration": 0.5289401, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6d740270-b6e8-44c5-a2ae-1c11b6a118c5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/2 1471", + "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, + "duration": 2.349458124, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/2 ingressOctets=5113259391791,egressOctets=8022210919697,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8853802b-c665-4460-8b08-208eff1c9b5b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789521 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/2.100 1564", + "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, + "duration": 0.497452024, + "executed": 1692789508, + "history": [ + { + "status": 0, + "executed": 1692783504 + }, + { + "status": 0, + "executed": 1692783804 + }, + { + "status": 0, + "executed": 1692784104 + }, + { + "status": 0, + "executed": 1692784404 + }, + { + "status": 0, + "executed": 1692784704 + }, + { + "status": 0, + "executed": 1692785005 + }, + { + "status": 0, + "executed": 1692785305 + }, + { + "status": 0, + "executed": 1692785605 + }, + { + "status": 0, + "executed": 1692785905 + }, + { + "status": 0, + "executed": 1692786206 + }, + { + "status": 0, + "executed": 1692786506 + }, + { + "status": 0, + "executed": 1692786806 + }, + { + "status": 0, + "executed": 1692787106 + }, + { + "status": 0, + "executed": 1692787407 + }, + { + "status": 0, + "executed": 1692787707 + }, + { + "status": 0, + "executed": 1692788008 + }, + { + "status": 0, + "executed": 1692788308 + }, + { + "status": 0, + "executed": 1692788608 + }, + { + "status": 0, + "executed": 1692788908 + }, + { + "status": 0, + "executed": 1692789208 + }, + { + "status": 0, + "executed": 1692789508 + } + ], + "issued": 1692789508, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/2.100 ingressOctets=1857755016512,egressOctets=3205576800640,ingressErrors=0,egressErrors=0,ingressOctetsv6=145405926,egressOctetsv6=8268410517,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789508, + "occurrences": 18347, + "occurrences_watermark": 18347, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-2.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8245e5cf-649a-45f9-a6b5-e10d90e35523", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789509 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/2.401 1565", + "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, + "duration": 0.472979553, + "executed": 1692789511, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784107 + }, + { + "status": 0, + "executed": 1692784407 + }, + { + "status": 0, + "executed": 1692784707 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785608 + }, + { + "status": 0, + "executed": 1692785908 + }, + { + "status": 0, + "executed": 1692786209 + }, + { + "status": 0, + "executed": 1692786509 + }, + { + "status": 0, + "executed": 1692786809 + }, + { + "status": 0, + "executed": 1692787109 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787710 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788911 + }, + { + "status": 0, + "executed": 1692789211 + }, + { + "status": 0, + "executed": 1692789511 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/2.401 ingressOctets=1449209366,egressOctets=272243651962,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789511, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-2.401", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8df59ee9-65da-4cdc-9cbf-d5af7058cdc0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789511 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/2.602 1236", + "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, + "duration": 0.491434467, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783523 + }, + { + "status": 0, + "executed": 1692783824 + }, + { + "status": 0, + "executed": 1692784124 + }, + { + "status": 0, + "executed": 1692784424 + }, + { + "status": 0, + "executed": 1692784724 + }, + { + "status": 0, + "executed": 1692785024 + }, + { + "status": 0, + "executed": 1692785324 + }, + { + "status": 0, + "executed": 1692785625 + }, + { + "status": 0, + "executed": 1692785925 + }, + { + "status": 0, + "executed": 1692786226 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786826 + }, + { + "status": 0, + "executed": 1692787126 + }, + { + "status": 0, + "executed": 1692787426 + }, + { + "status": 0, + "executed": 1692787727 + }, + { + "status": 0, + "executed": 1692788027 + }, + { + "status": 0, + "executed": 1692788327 + }, + { + "status": 0, + "executed": 1692788627 + }, + { + "status": 0, + "executed": 1692788928 + }, + { + "status": 0, + "executed": 1692789228 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789527, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/2.602 ingressOctets=229888762659,egressOctets=21949894717,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-2.602", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "286e4a35-b701-4f98-b642-a00ded964452", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789528 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/2.801 1566", + "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, + "duration": 0.511332693, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/2.801 ingressOctets=3024166859145,egressOctets=4522608401659,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-2.801", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9cddce1f-d8a0-40f0-ac06-8b49732a6d94", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/3 1472", + "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, + "duration": 0.46707875, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/3 ingressOctets=148701315170,egressOctets=2005604336928,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b4dc989d-8abd-48a8-930d-f66153b93e92", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/3.1 1179", + "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, + "duration": 0.534415539, + "executed": 1692789534, + "history": [ + { + "status": 0, + "executed": 1692783530 + }, + { + "status": 0, + "executed": 1692783830 + }, + { + "status": 0, + "executed": 1692784130 + }, + { + "status": 0, + "executed": 1692784430 + }, + { + "status": 0, + "executed": 1692784730 + }, + { + "status": 0, + "executed": 1692785031 + }, + { + "status": 0, + "executed": 1692785331 + }, + { + "status": 0, + "executed": 1692785631 + }, + { + "status": 0, + "executed": 1692785931 + }, + { + "status": 0, + "executed": 1692786232 + }, + { + "status": 0, + "executed": 1692786532 + }, + { + "status": 0, + "executed": 1692786832 + }, + { + "status": 0, + "executed": 1692787132 + }, + { + "status": 0, + "executed": 1692787432 + }, + { + "status": 0, + "executed": 1692787733 + }, + { + "status": 0, + "executed": 1692788033 + }, + { + "status": 0, + "executed": 1692788333 + }, + { + "status": 0, + "executed": 1692788633 + }, + { + "status": 0, + "executed": 1692788934 + }, + { + "status": 0, + "executed": 1692789234 + }, + { + "status": 0, + "executed": 1692789534 + } + ], + "issued": 1692789533, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/3.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789534, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-3.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cdda2902-af2a-4b97-8fa9-569992141043", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789534 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/3.200 1568", + "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, + "duration": 0.544422485, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/3.200 ingressOctets=148701667704,egressOctets=2005610482891,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 18351, + "occurrences_watermark": 18351, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-3.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0ffe765d-bf5c-41dc-8c28-f67cfd40c6ec", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/4 1473", + "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, + "duration": 0.501231359, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783523 + }, + { + "status": 0, + "executed": 1692783824 + }, + { + "status": 0, + "executed": 1692784124 + }, + { + "status": 0, + "executed": 1692784424 + }, + { + "status": 0, + "executed": 1692784724 + }, + { + "status": 0, + "executed": 1692785024 + }, + { + "status": 0, + "executed": 1692785324 + }, + { + "status": 0, + "executed": 1692785625 + }, + { + "status": 0, + "executed": 1692785925 + }, + { + "status": 0, + "executed": 1692786226 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786826 + }, + { + "status": 0, + "executed": 1692787126 + }, + { + "status": 0, + "executed": 1692787426 + }, + { + "status": 0, + "executed": 1692787727 + }, + { + "status": 0, + "executed": 1692788027 + }, + { + "status": 0, + "executed": 1692788327 + }, + { + "status": 0, + "executed": 1692788627 + }, + { + "status": 0, + "executed": 1692788928 + }, + { + "status": 0, + "executed": 1692789228 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789527, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/4 ingressOctets=248579053385094,egressOctets=220186058072069,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7af3b5b6-30b4-4b0d-8c97-68a85356eecb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789528 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/4.0 774", + "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, + "duration": 1.187796108, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785629 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/4.0 ingressOctets=248579383121165,egressOctets=220186257332000,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 18348, + "occurrences_watermark": 18348, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "869b2fff-7dfe-420f-ad4b-93261a09ec0a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/5 1474", + "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, + "duration": 0.460094398, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786360 + }, + { + "status": 0, + "executed": 1692786661 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787561 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/5 ingressOctets=255086703210109,egressOctets=238043151534166,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c015021a-e35b-426a-9622-9956cae25f35", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789664 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/5.0 776", + "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, + "duration": 0.475554303, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783668 + }, + { + "status": 0, + "executed": 1692783968 + }, + { + "status": 0, + "executed": 1692784268 + }, + { + "status": 0, + "executed": 1692784569 + }, + { + "status": 0, + "executed": 1692784869 + }, + { + "status": 0, + "executed": 1692785169 + }, + { + "status": 0, + "executed": 1692785469 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786970 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787571 + }, + { + "status": 0, + "executed": 1692787871 + }, + { + "status": 0, + "executed": 1692788171 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789072 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789672, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/5.0 ingressOctets=255087404752254,egressOctets=238043575318355,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 18352, + "occurrences_watermark": 18352, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1a080f01-7eb9-499f-928a-04ee4372faf4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789673 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/6 1475", + "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, + "duration": 0.518980325, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3caadaa7-acb6-49a9-aaa8-a7050dbc9d8f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon.uk.geant.net xe-3/3/7 1476", + "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, + "duration": 0.610906215, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783518 + }, + { + "status": 0, + "executed": 1692783818 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785019 + }, + { + "status": 0, + "executed": 1692785319 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787421 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788022 + }, + { + "status": 0, + "executed": 1692788322 + }, + { + "status": 0, + "executed": 1692788622 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.lon.uk.geant.net,interface_name=xe-3/3/7 ingressOctets=929342529769457,egressOctets=1169867761736422,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 18338, + "occurrences_watermark": 18338, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon.uk.geant.net-xe-3-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e9b2077e-418e-421b-ae6d-63a915e11e63", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 661220", + "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, + "duration": 0.448926213, + "executed": 1692789453, + "history": [ + { + "status": 0, + "executed": 1692783448 + }, + { + "status": 0, + "executed": 1692783748 + }, + { + "status": 0, + "executed": 1692784049 + }, + { + "status": 0, + "executed": 1692784349 + }, + { + "status": 0, + "executed": 1692784649 + }, + { + "status": 0, + "executed": 1692784949 + }, + { + "status": 0, + "executed": 1692785250 + }, + { + "status": 0, + "executed": 1692785550 + }, + { + "status": 0, + "executed": 1692785850 + }, + { + "status": 0, + "executed": 1692786150 + }, + { + "status": 0, + "executed": 1692786451 + }, + { + "status": 0, + "executed": 1692786751 + }, + { + "status": 0, + "executed": 1692787051 + }, + { + "status": 0, + "executed": 1692787352 + }, + { + "status": 0, + "executed": 1692787652 + }, + { + "status": 0, + "executed": 1692787952 + }, + { + "status": 0, + "executed": 1692788252 + }, + { + "status": 0, + "executed": 1692788552 + }, + { + "status": 0, + "executed": 1692788853 + }, + { + "status": 0, + "executed": 1692789153 + }, + { + "status": 0, + "executed": 1692789453 + } + ], + "issued": 1692789453, + "output": "dscp32_counters,service_id=661220,hostname=mx1.lon2.uk.geant.net,interface_name=ae17.333 ingressOctets=118136708496,egressOctets=398964932472\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789453, + "occurrences": 2031, + "occurrences_watermark": 2031, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-UK_ASREN_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e616b122-76b4-4721-8b97-292353bcaf2a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789453 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.lon2.uk.geant.net", + "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, + "duration": 6.346182228, + "executed": 1692789420, + "history": [ + { + "status": 1, + "executed": 1692783416 + }, + { + "status": 1, + "executed": 1692783716 + }, + { + "status": 1, + "executed": 1692784016 + }, + { + "status": 1, + "executed": 1692784316 + }, + { + "status": 1, + "executed": 1692784617 + }, + { + "status": 1, + "executed": 1692784917 + }, + { + "status": 1, + "executed": 1692785217 + }, + { + "status": 1, + "executed": 1692785517 + }, + { + "status": 1, + "executed": 1692785817 + }, + { + "status": 1, + "executed": 1692786117 + }, + { + "status": 1, + "executed": 1692786418 + }, + { + "status": 1, + "executed": 1692786718 + }, + { + "status": 1, + "executed": 1692787018 + }, + { + "status": 1, + "executed": 1692787319 + }, + { + "status": 1, + "executed": 1692787619 + }, + { + "status": 1, + "executed": 1692787919 + }, + { + "status": 1, + "executed": 1692788219 + }, + { + "status": 1, + "executed": 1692788519 + }, + { + "status": 1, + "executed": 1692788820 + }, + { + "status": 1, + "executed": 1692789120 + }, + { + "status": 1, + "executed": 1692789420 + } + ], + "issued": 1692789420, + "output": "2023-08-23 11:17:01,159 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:01,160 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:01,160 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:01,160 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.lon2.uk.geant.net\n2023-08-23 11:17:01,163 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:01,184 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.lon2.uk.geant.net HTTP/1.1\" 200 14706\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.1 octets=244709259464\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.2 octets=197658114\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.8 octets=24733355369\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.9 octets=17161109791\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.10 octets=211639480212\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.11 octets=248720787561\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.12 octets=241126089663\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.13 octets=971373039042\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.14 octets=16967421241\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.15 octets=509160053285\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.16 octets=310535848812\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.17 octets=226529881865\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.18 octets=960489509605\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.19 octets=128499166027\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.20 octets=510750238664\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.21 octets=299676161555\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.23 octets=424379273322\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.24 octets=1250955250920\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.25 octets=100500531999\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.28 octets=211265022939\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.29 octets=1767977575941\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.30 octets=2505978235085\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.32 octets=2277382260420\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.33 octets=943938554845\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.34 octets=265318196990\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.35 octets=1388219085528\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.36 octets=1308882855599\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.37 octets=4824417709509\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.38 octets=7371990044709\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.39 octets=1033651532201\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.40 octets=501789607235\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.41 octets=418687254661\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.42 octets=3392952382481\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.43 octets=10011158532118\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.44 octets=927596849244\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.45 octets=7235752844317\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.46 octets=339912393574\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.47 octets=1027425674136\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.48 octets=507834370117\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.49 octets=412304495854\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.50 octets=3417628004416\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.51 octets=6806473955720\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.52 octets=939132620113\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.53 octets=11173048670505\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.54 octets=139064538964\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.55 octets=321647189166\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.56 octets=371180998048\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.57 octets=267779254479\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.58 octets=262576829080\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.59 octets=505768243698\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.61 octets=95597717076\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.62 octets=95183313519\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.63 octets=15090295447\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.64 octets=277100554591\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.65 octets=59616883749\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.66 octets=10685365774\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.67 octets=811132111974\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.68 octets=468673456973\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.222.69 octets=355092523990\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.223.1 octets=24720970335693\nmulticast,hostname=mx1.lon2.uk.geant.net,subscription=232.223.223.22 octets=10163570176\n2023-08-23 11:17:07,036 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.22,232.223.222.26,232.223.222.27,232.223.222.31,232.223.222.60,232.223.222.70,232.223.222.71,232.223.222.72\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 12302, + "occurrences_watermark": 22534, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "42f375ae-9645-4764-8954-ffc4dab992b6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789427 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae12 629", + "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, + "duration": 0.501373459, + "executed": 1692789688, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783985 + }, + { + "status": 0, + "executed": 1692784285 + }, + { + "status": 0, + "executed": 1692784586 + }, + { + "status": 0, + "executed": 1692784886 + }, + { + "status": 0, + "executed": 1692785186 + }, + { + "status": 0, + "executed": 1692785486 + }, + { + "status": 0, + "executed": 1692785786 + }, + { + "status": 0, + "executed": 1692786087 + }, + { + "status": 0, + "executed": 1692786386 + }, + { + "status": 0, + "executed": 1692786687 + }, + { + "status": 0, + "executed": 1692786987 + }, + { + "status": 0, + "executed": 1692787287 + }, + { + "status": 0, + "executed": 1692787587 + }, + { + "status": 0, + "executed": 1692787887 + }, + { + "status": 0, + "executed": 1692788187 + }, + { + "status": 0, + "executed": 1692788488 + }, + { + "status": 0, + "executed": 1692788788 + }, + { + "status": 0, + "executed": 1692789088 + }, + { + "status": 0, + "executed": 1692789388 + }, + { + "status": 0, + "executed": 1692789688 + } + ], + "issued": 1692789688, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae12 ingressOctets=11038594624,egressOctets=17332246908,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789688, + "occurrences": 4274, + "occurrences_watermark": 4274, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "55becee6-8fcd-4413-9488-f087afe42491", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789689 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae12.0 714", + "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, + "duration": 0.587849179, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae12.0 ingressOctets=9671805726,egressOctets=17170951288,ingressErrors=0,egressErrors=0,ingressOctetsv6=753168816,egressOctetsv6=401553334,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 4302, + "occurrences_watermark": 4302, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae12.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e93e46d9-7012-42c0-8103-3aa903b37582", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae16 633", + "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, + "duration": 0.529004187, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae16 ingressOctets=52981910569454,egressOctets=24786038984453,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 12285, + "occurrences_watermark": 12285, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "71925bf5-a879-4512-8f25-0a5db06745b5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789612 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae16.100 1037", + "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, + "duration": 0.492978231, + "executed": 1692789507, + "history": [ + { + "status": 0, + "executed": 1692783503 + }, + { + "status": 0, + "executed": 1692783803 + }, + { + "status": 0, + "executed": 1692784103 + }, + { + "status": 0, + "executed": 1692784403 + }, + { + "status": 0, + "executed": 1692784703 + }, + { + "status": 0, + "executed": 1692785004 + }, + { + "status": 0, + "executed": 1692785304 + }, + { + "status": 0, + "executed": 1692785604 + }, + { + "status": 0, + "executed": 1692785904 + }, + { + "status": 0, + "executed": 1692786205 + }, + { + "status": 0, + "executed": 1692786505 + }, + { + "status": 0, + "executed": 1692786805 + }, + { + "status": 0, + "executed": 1692787105 + }, + { + "status": 0, + "executed": 1692787406 + }, + { + "status": 0, + "executed": 1692787706 + }, + { + "status": 0, + "executed": 1692788007 + }, + { + "status": 0, + "executed": 1692788307 + }, + { + "status": 0, + "executed": 1692788607 + }, + { + "status": 0, + "executed": 1692788907 + }, + { + "status": 0, + "executed": 1692789207 + }, + { + "status": 0, + "executed": 1692789507 + } + ], + "issued": 1692789507, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae16.100 ingressOctets=5166293443257,egressOctets=7782956925588,ingressErrors=0,egressErrors=0,ingressOctetsv6=1746861233920,egressOctetsv6=5037036058554,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789507, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae16.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "97e0eff6-c040-46a3-aca7-816954da18a4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789507 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae16.101 563", + "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, + "duration": 0.496596255, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783553 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae16.101 ingressOctets=1826654,egressOctets=94439716,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae16.101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aac8f4c2-92e2-41db-b366-c27b65d5d2c8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae16.2001 1773", + "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, + "duration": 0.53588328, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784518 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae16.2001 ingressOctets=11562165864850,egressOctets=206962103876,ingressErrors=0,egressErrors=0,ingressOctetsv6=978700,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae16.2001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ef1dc4e1-6383-4016-a197-d311110b686a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789623 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae16.300 1161", + "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, + "duration": 0.513084526, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae16.300 ingressOctets=36251244857004,egressOctets=16796606895901,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae16.300", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2c5fa8f8-77b2-4632-99e7-d2c2423507be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae17 634", + "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, + "duration": 0.442123242, + "executed": 1692789511, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784107 + }, + { + "status": 0, + "executed": 1692784407 + }, + { + "status": 0, + "executed": 1692784707 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785608 + }, + { + "status": 0, + "executed": 1692785908 + }, + { + "status": 0, + "executed": 1692786209 + }, + { + "status": 0, + "executed": 1692786509 + }, + { + "status": 0, + "executed": 1692786809 + }, + { + "status": 0, + "executed": 1692787109 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787710 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788911 + }, + { + "status": 0, + "executed": 1692789211 + }, + { + "status": 0, + "executed": 1692789511 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae17 ingressOctets=29130340492990,egressOctets=6808364017825,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789511, + "occurrences": 12299, + "occurrences_watermark": 12299, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae17", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e6ee0c3f-190e-4bf6-a932-af9c7bf0a22a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789511 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae17.333 607", + "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, + "duration": 0.474381384, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783573 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae17.333 ingressOctets=575971396698,egressOctets=2142077756862,ingressErrors=0,egressErrors=0,ingressOctetsv6=268594470760,egressOctetsv6=91496833973,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae17.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3a31664f-a79b-4915-8e6d-72ba457c3450", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae17.500 608", + "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, + "duration": 0.537040583, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae17.500 ingressOctets=28555188705827,egressOctets=4666357288487,ingressErrors=0,egressErrors=0,ingressOctetsv6=25027748219333,egressOctetsv6=1018661371731,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae17.500", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "55411193-832c-4c19-a33e-0ed0a7cb2491", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae2 619", + "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, + "duration": 0.494754433, + "executed": 1692789530, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785326 + }, + { + "status": 0, + "executed": 1692785627 + }, + { + "status": 0, + "executed": 1692785927 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786528 + }, + { + "status": 0, + "executed": 1692786828 + }, + { + "status": 0, + "executed": 1692787128 + }, + { + "status": 0, + "executed": 1692787428 + }, + { + "status": 0, + "executed": 1692787729 + }, + { + "status": 0, + "executed": 1692788029 + }, + { + "status": 0, + "executed": 1692788329 + }, + { + "status": 0, + "executed": 1692788629 + }, + { + "status": 0, + "executed": 1692788930 + }, + { + "status": 0, + "executed": 1692789230 + }, + { + "status": 0, + "executed": 1692789530 + } + ], + "issued": 1692789529, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae2 ingressOctets=21224803651174592,egressOctets=34093631932623767,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789530, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0cb9d615-ad39-4fed-8ba6-ebe24f563bc9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae2.0 725", + "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, + "duration": 0.450933565, + "executed": 1692789652, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784848 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786049 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788150 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789652 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae2.0 ingressOctets=21226216530455668,egressOctets=34094304104380917,ingressErrors=0,egressErrors=0,ingressOctetsv6=12001483232842,egressOctetsv6=7087920085721881,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789652, + "occurrences": 12284, + "occurrences_watermark": 12284, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0cb912bd-e420-4672-8fde-516beeba5107", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae4 621", + "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, + "duration": 0.541559474, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785974 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae4 ingressOctets=1563128215319894,egressOctets=534994036507974,ingressErrors=85,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bcf18bed-eec4-4457-86cc-966e4524d3b1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae4.0 672", + "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, + "duration": 0.463374354, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae4.0 ingressOctets=1563095397010974,egressOctets=534959419213440,ingressErrors=0,egressErrors=0,ingressOctetsv6=1177255503905,egressOctetsv6=588560315174,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e380d5c9-7384-427d-8338-db441e53efb2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789479 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae7 624", + "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, + "duration": 0.57676132, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae7 ingressOctets=278759953215192,egressOctets=142711177357332,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 12284, + "occurrences_watermark": 12284, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "870240f9-3ab2-4272-a463-ebbfce7e4ab9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae7.0 732", + "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, + "duration": 0.457401599, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae7.0 ingressOctets=278760206150544,egressOctets=142711282499943,ingressErrors=0,egressErrors=0,ingressOctetsv6=20877483,egressOctetsv6=4215327,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 12282, + "occurrences_watermark": 12282, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b6cdf549-affd-4124-89ca-2231b8593ccf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae8 625", + "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, + "duration": 0.543996764, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783587 + }, + { + "status": 0, + "executed": 1692783887 + }, + { + "status": 0, + "executed": 1692784187 + }, + { + "status": 0, + "executed": 1692784487 + }, + { + "status": 0, + "executed": 1692784787 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785987 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787189 + }, + { + "status": 0, + "executed": 1692787489 + }, + { + "status": 0, + "executed": 1692787789 + }, + { + "status": 0, + "executed": 1692788090 + }, + { + "status": 0, + "executed": 1692788390 + }, + { + "status": 0, + "executed": 1692788690 + }, + { + "status": 0, + "executed": 1692788990 + }, + { + "status": 0, + "executed": 1692789291 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789591, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae8 ingressOctets=32546407511109978,egressOctets=20785707999506205,ingressErrors=70,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2da053b3-83ce-4895-afdb-7a58ef77a733", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ae8.0 768", + "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, + "duration": 0.480810061, + "executed": 1692789597, + "history": [ + { + "status": 0, + "executed": 1692783592 + }, + { + "status": 0, + "executed": 1692783892 + }, + { + "status": 0, + "executed": 1692784192 + }, + { + "status": 0, + "executed": 1692784492 + }, + { + "status": 0, + "executed": 1692784793 + }, + { + "status": 0, + "executed": 1692785093 + }, + { + "status": 0, + "executed": 1692785393 + }, + { + "status": 0, + "executed": 1692785693 + }, + { + "status": 0, + "executed": 1692785993 + }, + { + "status": 0, + "executed": 1692786294 + }, + { + "status": 0, + "executed": 1692786594 + }, + { + "status": 0, + "executed": 1692786894 + }, + { + "status": 0, + "executed": 1692787194 + }, + { + "status": 0, + "executed": 1692787494 + }, + { + "status": 0, + "executed": 1692787795 + }, + { + "status": 0, + "executed": 1692788095 + }, + { + "status": 0, + "executed": 1692788395 + }, + { + "status": 0, + "executed": 1692788696 + }, + { + "status": 0, + "executed": 1692788996 + }, + { + "status": 0, + "executed": 1692789296 + }, + { + "status": 0, + "executed": 1692789597 + } + ], + "issued": 1692789596, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ae8.0 ingressOctets=32546425088663339,egressOctets=20785752223751235,ingressErrors=0,egressErrors=0,ingressOctetsv6=4705125675170,egressOctetsv6=1755459474642704,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789597, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ae8.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b1decdef-9bfb-424a-81f2-cdeccda4ea22", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789597 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-1/0/0 748", + "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, + "duration": 0.488574367, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784502 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786003 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=et-1/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-et-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "405db66a-1ca1-453d-80b3-2ee4edfb8e50", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-10/0/2 1154", + "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, + "duration": 0.524494764, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786591 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788393 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=et-10/0/2 ingressOctets=3481235367,egressOctets=4820005448,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-et-10-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "75d90692-7868-496e-ba84-f268a7a4dcfc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-10/0/5 1152", + "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, + "duration": 0.464344837, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786591 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=et-10/0/5 ingressOctets=4228064137,egressOctets=7347415587,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-et-10-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1da79ea2-0146-4bf1-8c63-dfc3b7de37d1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-10/1/2 1159", + "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, + "duration": 0.54073499, + "executed": 1692789617, + "history": [ + { + "status": 0, + "executed": 1692783613 + }, + { + "status": 0, + "executed": 1692783913 + }, + { + "status": 0, + "executed": 1692784213 + }, + { + "status": 0, + "executed": 1692784513 + }, + { + "status": 0, + "executed": 1692784813 + }, + { + "status": 0, + "executed": 1692785113 + }, + { + "status": 0, + "executed": 1692785413 + }, + { + "status": 0, + "executed": 1692785713 + }, + { + "status": 0, + "executed": 1692786014 + }, + { + "status": 0, + "executed": 1692786315 + }, + { + "status": 0, + "executed": 1692786615 + }, + { + "status": 0, + "executed": 1692786915 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789617 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=et-10/1/2 ingressOctets=3329256613,egressOctets=5164833371,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789617, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-et-10-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "64e93cf3-7d2d-4fb3-a62a-f1485c2e89d7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789618 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-10/1/5 1160", + "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, + "duration": 0.680081678, + "executed": 1692789617, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785413 + }, + { + "status": 0, + "executed": 1692785713 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786614 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789016 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789617 + } + ], + "issued": 1692789616, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=et-10/1/5 ingressOctets=1563138316878477,egressOctets=535002863312068,ingressErrors=85,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789617, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-et-10-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b62d9664-8c98-4de4-9886-909996015e62", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-3/0/4 616", + "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, + "duration": 0.442872607, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=et-3/0/4 ingressOctets=10610249199962827,egressOctets=16689255456010811,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 12284, + "occurrences_watermark": 12284, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-et-3-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1fa1b981-a7c9-4796-ae77-8f33920f1e4e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-3/1/4 680", + "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, + "duration": 0.502541721, + "executed": 1692789625, + "history": [ + { + "status": 0, + "executed": 1692783621 + }, + { + "status": 0, + "executed": 1692783921 + }, + { + "status": 0, + "executed": 1692784221 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785422 + }, + { + "status": 0, + "executed": 1692785722 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786323 + }, + { + "status": 0, + "executed": 1692786623 + }, + { + "status": 0, + "executed": 1692786923 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787524 + }, + { + "status": 0, + "executed": 1692787824 + }, + { + "status": 0, + "executed": 1692788124 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789025 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789625 + } + ], + "issued": 1692789625, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=et-3/1/4 ingressOctets=10615003529469504,egressOctets=17404548980166897,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789625, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-et-3-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d62e041c-6576-4566-8a25-26f48e77ceef", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-4/0/4 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, + "duration": 0.532672513, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=et-4/0/4 ingressOctets=16227419799887350,egressOctets=10414654646271845,ingressErrors=30240,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 4274, + "occurrences_watermark": 4274, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-et-4-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f4e7d0d-b19f-4dd6-8389-7930e981aa66", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-4/1/4 706", + "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, + "duration": 0.488136516, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=et-4/1/4 ingressOctets=16319102125792321,egressOctets=10371195817590145,ingressErrors=24267,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 12294, + "occurrences_watermark": 12294, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-et-4-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "784c7c99-66a5-4294-b5a9-5300312d7cb4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net et-5/0/0 747", + "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, + "duration": 2.508001508, + "executed": 1692789518, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784113 + }, + { + "status": 0, + "executed": 1692784413 + }, + { + "status": 0, + "executed": 1692784713 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789518 + } + ], + "issued": 1692789517, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=et-5/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789518, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-et-5-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8d625bb5-f55e-402e-88a4-09e2bd835d3c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789520 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0 517", + "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, + "duration": 0.460784395, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0 ingressOctets=795633041031,egressOctets=409788662202,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cfe9e63f-b1bd-4ea1-90ea-b39f1acbdc37", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.11 1131", + "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, + "duration": 0.467895424, + "executed": 1692789541, + "history": [ + { + "status": 0, + "executed": 1692783537 + }, + { + "status": 0, + "executed": 1692783838 + }, + { + "status": 0, + "executed": 1692784138 + }, + { + "status": 0, + "executed": 1692784438 + }, + { + "status": 0, + "executed": 1692784738 + }, + { + "status": 0, + "executed": 1692785038 + }, + { + "status": 0, + "executed": 1692785338 + }, + { + "status": 0, + "executed": 1692785638 + }, + { + "status": 0, + "executed": 1692785938 + }, + { + "status": 0, + "executed": 1692786239 + }, + { + "status": 0, + "executed": 1692786539 + }, + { + "status": 0, + "executed": 1692786839 + }, + { + "status": 0, + "executed": 1692787139 + }, + { + "status": 0, + "executed": 1692787440 + }, + { + "status": 0, + "executed": 1692787740 + }, + { + "status": 0, + "executed": 1692788041 + }, + { + "status": 0, + "executed": 1692788341 + }, + { + "status": 0, + "executed": 1692788641 + }, + { + "status": 0, + "executed": 1692788941 + }, + { + "status": 0, + "executed": 1692789241 + }, + { + "status": 0, + "executed": 1692789541 + } + ], + "issued": 1692789541, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.11 ingressOctets=212114209,egressOctets=77446223,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789541, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a1fc26b8-99ed-48c1-8e8e-2bd086903399", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789542 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.200 726", + "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, + "duration": 0.563044755, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783844 + }, + { + "status": 0, + "executed": 1692784144 + }, + { + "status": 0, + "executed": 1692784444 + }, + { + "status": 0, + "executed": 1692784744 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787446 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788047 + }, + { + "status": 0, + "executed": 1692788347 + }, + { + "status": 0, + "executed": 1692788647 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.200 ingressOctets=397971978,egressOctets=415658339,ingressErrors=0,egressErrors=0,ingressOctetsv6=8456883,egressOctetsv6=26092,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1d7c4fa6-4976-4414-b930-8e03eb3791aa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.21 678", + "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, + "duration": 0.51947348, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783844 + }, + { + "status": 0, + "executed": 1692784144 + }, + { + "status": 0, + "executed": 1692784444 + }, + { + "status": 0, + "executed": 1692784744 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787446 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788047 + }, + { + "status": 0, + "executed": 1692788347 + }, + { + "status": 0, + "executed": 1692788647 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.21 ingressOctets=165347992,egressOctets=43610451,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4139a637-6d89-4955-af72-7f1fc50c40fc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.22 681", + "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, + "duration": 0.497087295, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783549 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785050 + }, + { + "status": 0, + "executed": 1692785350 + }, + { + "status": 0, + "executed": 1692785650 + }, + { + "status": 0, + "executed": 1692785950 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786551 + }, + { + "status": 0, + "executed": 1692786851 + }, + { + "status": 0, + "executed": 1692787151 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787752 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.22 ingressOctets=124538328,egressOctets=220463718,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0f30a264-3b14-47c6-a65a-f5dbcbdc758a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.250 677", + "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, + "duration": 0.450749741, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789559, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.250 ingressOctets=175740012,egressOctets=186655412,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.250", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9d25f907-d541-4c9a-86b3-2dc3cdefd959", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.260 836", + "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, + "duration": 0.46860757, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.260 ingressOctets=2048602491,egressOctets=1404125284,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.260", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "60072170-06a6-4d8d-95fb-44669fbc6ac1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.302 1053", + "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, + "duration": 0.474184492, + "executed": 1692789652, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784848 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786049 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788150 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789652 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.302 ingressOctets=408745170,egressOctets=152066354,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789652, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.302", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a9f8641-d86d-45ed-b4af-6552e6d1426e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.402 1528", + "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, + "duration": 0.531223959, + "executed": 1692789648, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784541 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785743 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786645 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787546 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789648 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.402 ingressOctets=408726966,egressOctets=152030610,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789648, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.402", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3e4e080a-9944-482d-8628-d1b2c9dd8eff", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.50 691", + "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, + "duration": 0.477626725, + "executed": 1692789652, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784548 + }, + { + "status": 0, + "executed": 1692784849 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785449 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786049 + }, + { + "status": 0, + "executed": 1692786350 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786950 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787851 + }, + { + "status": 0, + "executed": 1692788151 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789052 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789652 + } + ], + "issued": 1692789652, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.50 ingressOctets=772990937364,egressOctets=406294023199,ingressErrors=0,egressErrors=0,ingressOctetsv6=277748761194,egressOctetsv6=168167345235,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789652, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.50", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e90e43e-9322-4ba8-9bdc-5b9221b861be", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789653 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.505 1904", + "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, + "duration": 0.473081463, + "executed": 1692789621, + "history": [ + { + "status": 0, + "executed": 1692783616 + }, + { + "status": 0, + "executed": 1692783916 + }, + { + "status": 0, + "executed": 1692784216 + }, + { + "status": 0, + "executed": 1692784516 + }, + { + "status": 0, + "executed": 1692784817 + }, + { + "status": 0, + "executed": 1692785117 + }, + { + "status": 0, + "executed": 1692785417 + }, + { + "status": 0, + "executed": 1692785717 + }, + { + "status": 0, + "executed": 1692786019 + }, + { + "status": 0, + "executed": 1692786319 + }, + { + "status": 0, + "executed": 1692786618 + }, + { + "status": 0, + "executed": 1692786919 + }, + { + "status": 0, + "executed": 1692787219 + }, + { + "status": 0, + "executed": 1692787519 + }, + { + "status": 0, + "executed": 1692787820 + }, + { + "status": 0, + "executed": 1692788120 + }, + { + "status": 0, + "executed": 1692788421 + }, + { + "status": 0, + "executed": 1692788721 + }, + { + "status": 0, + "executed": 1692789021 + }, + { + "status": 0, + "executed": 1692789322 + }, + { + "status": 0, + "executed": 1692789621 + } + ], + "issued": 1692789621, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.505 ingressOctets=168937941,egressOctets=44075246,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789621, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.505", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "290a89eb-44a9-407f-82a4-532bee95f735", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789622 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/0.991 617", + "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, + "duration": 0.460609218, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/0.991 ingressOctets=18749342601,egressOctets=653017746,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 12285, + "occurrences_watermark": 12285, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-0.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3daf4da2-97b8-4e46-b5eb-a2c71b02fd24", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/1 518", + "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, + "duration": 0.469192342, + "executed": 1692789659, + "history": [ + { + "status": 0, + "executed": 1692783655 + }, + { + "status": 0, + "executed": 1692783955 + }, + { + "status": 0, + "executed": 1692784255 + }, + { + "status": 0, + "executed": 1692784555 + }, + { + "status": 0, + "executed": 1692784855 + }, + { + "status": 0, + "executed": 1692785155 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786056 + }, + { + "status": 0, + "executed": 1692786356 + }, + { + "status": 0, + "executed": 1692786657 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787257 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788458 + }, + { + "status": 0, + "executed": 1692788758 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789359 + }, + { + "status": 0, + "executed": 1692789659 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/1 ingressOctets=1578,egressOctets=74216990,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789659, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "58e595d8-aea8-4871-af0e-a45fea779987", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/2 519", + "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, + "duration": 0.533669285, + "executed": 1692789630, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786628 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789630 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/2 ingressOctets=0,egressOctets=44474104,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789630, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cedd594a-abf7-4e02-981d-c8046c723867", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/3 520", + "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, + "duration": 0.494067867, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3cbc7747-74d4-427f-a44a-dcbf3199d759", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/4 521", + "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, + "duration": 0.501652794, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783518 + }, + { + "status": 0, + "executed": 1692783818 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785019 + }, + { + "status": 0, + "executed": 1692785319 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787421 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788022 + }, + { + "status": 0, + "executed": 1692788322 + }, + { + "status": 0, + "executed": 1692788622 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/4 ingressOctets=11906172164,egressOctets=6363661715,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1d8551c1-4ece-421d-b4d2-58c137f8f65d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/5 522", + "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, + "duration": 0.461674548, + "executed": 1692789700, + "history": [ + { + "status": 0, + "executed": 1692783697 + }, + { + "status": 0, + "executed": 1692783998 + }, + { + "status": 0, + "executed": 1692784298 + }, + { + "status": 0, + "executed": 1692784598 + }, + { + "status": 0, + "executed": 1692784898 + }, + { + "status": 0, + "executed": 1692785198 + }, + { + "status": 0, + "executed": 1692785498 + }, + { + "status": 0, + "executed": 1692785799 + }, + { + "status": 0, + "executed": 1692786099 + }, + { + "status": 0, + "executed": 1692786399 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692786999 + }, + { + "status": 0, + "executed": 1692787300 + }, + { + "status": 0, + "executed": 1692787600 + }, + { + "status": 0, + "executed": 1692787900 + }, + { + "status": 0, + "executed": 1692788200 + }, + { + "status": 0, + "executed": 1692788500 + }, + { + "status": 0, + "executed": 1692788801 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789700 + } + ], + "issued": 1692789700, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/5 ingressOctets=361162,egressOctets=6985977744414,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789700, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "67084e7d-f812-4a46-87e1-c3757da71e70", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/6 523", + "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, + "duration": 0.470883492, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/6 ingressOctets=5322409446,egressOctets=1880274985,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 12286, + "occurrences_watermark": 12286, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ccb27bb7-8a8b-4e70-a3cb-38b64620fa9f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/7 524", + "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, + "duration": 0.528091967, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783857 + }, + { + "status": 0, + "executed": 1692784157 + }, + { + "status": 0, + "executed": 1692784457 + }, + { + "status": 0, + "executed": 1692784757 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/7 ingressOctets=11792769749,egressOctets=2054394545837,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 12292, + "occurrences_watermark": 12292, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ef9c8104-e9ae-4a3b-927d-4d3802f3e2c1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789563 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/7.252 679", + "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, + "duration": 0.468785225, + "executed": 1692789651, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784548 + }, + { + "status": 0, + "executed": 1692784848 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786049 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786649 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788151 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789651 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/7.252 ingressOctets=120,egressOctets=3414019902,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789651, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-7.252", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6946fa85-a089-40fd-a401-caed3179aed8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/8 525", + "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, + "duration": 0.478353715, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785995 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8990e53c-801c-4a05-8132-7314bca62e6e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/0/9 526", + "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, + "duration": 0.471981758, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783856 + }, + { + "status": 0, + "executed": 1692784156 + }, + { + "status": 0, + "executed": 1692784456 + }, + { + "status": 0, + "executed": 1692784756 + }, + { + "status": 0, + "executed": 1692785057 + }, + { + "status": 0, + "executed": 1692785357 + }, + { + "status": 0, + "executed": 1692785657 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786258 + }, + { + "status": 0, + "executed": 1692786558 + }, + { + "status": 0, + "executed": 1692786858 + }, + { + "status": 0, + "executed": 1692787158 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787759 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788660 + }, + { + "status": 0, + "executed": 1692788960 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/0/9 ingressOctets=0,egressOctets=143299392,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-0-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "34d7db38-0c98-4b9a-806c-e953814d7376", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/0 527", + "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, + "duration": 0.487074545, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/0 ingressOctets=602227961,egressOctets=156974665,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "455fc83f-0bca-4c41-be29-098813aeee19", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/1 528", + "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, + "duration": 0.500761786, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/1 ingressOctets=39530403,egressOctets=47549901,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ed301e33-6445-4978-b184-51b8b3938789", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/2 529", + "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, + "duration": 0.45458136, + "executed": 1692789676, + "history": [ + { + "status": 0, + "executed": 1692783672 + }, + { + "status": 0, + "executed": 1692783972 + }, + { + "status": 0, + "executed": 1692784272 + }, + { + "status": 0, + "executed": 1692784573 + }, + { + "status": 0, + "executed": 1692784873 + }, + { + "status": 0, + "executed": 1692785173 + }, + { + "status": 0, + "executed": 1692785473 + }, + { + "status": 0, + "executed": 1692785773 + }, + { + "status": 0, + "executed": 1692786074 + }, + { + "status": 0, + "executed": 1692786374 + }, + { + "status": 0, + "executed": 1692786673 + }, + { + "status": 0, + "executed": 1692786974 + }, + { + "status": 0, + "executed": 1692787274 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787875 + }, + { + "status": 0, + "executed": 1692788175 + }, + { + "status": 0, + "executed": 1692788476 + }, + { + "status": 0, + "executed": 1692788776 + }, + { + "status": 0, + "executed": 1692789076 + }, + { + "status": 0, + "executed": 1692789377 + }, + { + "status": 0, + "executed": 1692789676 + } + ], + "issued": 1692789676, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789676, + "occurrences": 12285, + "occurrences_watermark": 12285, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e5de0aa1-9337-4ed4-82bc-2169b8f3972b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789677 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/3 530", + "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, + "duration": 0.472248664, + "executed": 1692789676, + "history": [ + { + "status": 0, + "executed": 1692783672 + }, + { + "status": 0, + "executed": 1692783972 + }, + { + "status": 0, + "executed": 1692784272 + }, + { + "status": 0, + "executed": 1692784573 + }, + { + "status": 0, + "executed": 1692784873 + }, + { + "status": 0, + "executed": 1692785173 + }, + { + "status": 0, + "executed": 1692785473 + }, + { + "status": 0, + "executed": 1692785773 + }, + { + "status": 0, + "executed": 1692786074 + }, + { + "status": 0, + "executed": 1692786374 + }, + { + "status": 0, + "executed": 1692786673 + }, + { + "status": 0, + "executed": 1692786974 + }, + { + "status": 0, + "executed": 1692787274 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787875 + }, + { + "status": 0, + "executed": 1692788175 + }, + { + "status": 0, + "executed": 1692788476 + }, + { + "status": 0, + "executed": 1692788776 + }, + { + "status": 0, + "executed": 1692789076 + }, + { + "status": 0, + "executed": 1692789377 + }, + { + "status": 0, + "executed": 1692789676 + } + ], + "issued": 1692789676, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/3 ingressOctets=2026592139332,egressOctets=33373064929,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=317\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789676, + "occurrences": 4302, + "occurrences_watermark": 4302, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0665bb44-3538-4207-b0ea-36ee2f9d6641", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789677 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/3.252 593", + "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, + "duration": 0.498607978, + "executed": 1692789670, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784567 + }, + { + "status": 0, + "executed": 1692784867 + }, + { + "status": 0, + "executed": 1692785167 + }, + { + "status": 0, + "executed": 1692785467 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786368 + }, + { + "status": 0, + "executed": 1692786668 + }, + { + "status": 0, + "executed": 1692786968 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787569 + }, + { + "status": 0, + "executed": 1692787869 + }, + { + "status": 0, + "executed": 1692788169 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789070 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789670 + } + ], + "issued": 1692789670, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/3.252 ingressOctets=2026551234569,egressOctets=32427997232,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789670, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-3.252", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7b8b9a26-440e-4412-9385-50dc84510061", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789671 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/3.260 596", + "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, + "duration": 0.495205309, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/3.260 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-3.260", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bfaf078e-4a80-4968-9265-ef12c85c9f62", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/4 531", + "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, + "duration": 0.485395384, + "executed": 1692789690, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783987 + }, + { + "status": 0, + "executed": 1692784287 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785788 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786688 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787289 + }, + { + "status": 0, + "executed": 1692787589 + }, + { + "status": 0, + "executed": 1692787889 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788790 + }, + { + "status": 0, + "executed": 1692789090 + }, + { + "status": 0, + "executed": 1692789390 + }, + { + "status": 0, + "executed": 1692789690 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789690, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7f067455-96d8-457c-a6b2-9574e096ee0e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789690 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/5 532", + "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, + "duration": 0.476452305, + "executed": 1692789650, + "history": [ + { + "status": 0, + "executed": 1692783646 + }, + { + "status": 0, + "executed": 1692783946 + }, + { + "status": 0, + "executed": 1692784246 + }, + { + "status": 0, + "executed": 1692784546 + }, + { + "status": 0, + "executed": 1692784846 + }, + { + "status": 0, + "executed": 1692785146 + }, + { + "status": 0, + "executed": 1692785447 + }, + { + "status": 0, + "executed": 1692785747 + }, + { + "status": 0, + "executed": 1692786048 + }, + { + "status": 0, + "executed": 1692786348 + }, + { + "status": 0, + "executed": 1692786647 + }, + { + "status": 0, + "executed": 1692786948 + }, + { + "status": 0, + "executed": 1692787248 + }, + { + "status": 0, + "executed": 1692787548 + }, + { + "status": 0, + "executed": 1692787849 + }, + { + "status": 0, + "executed": 1692788149 + }, + { + "status": 0, + "executed": 1692788449 + }, + { + "status": 0, + "executed": 1692788749 + }, + { + "status": 0, + "executed": 1692789050 + }, + { + "status": 0, + "executed": 1692789350 + }, + { + "status": 0, + "executed": 1692789650 + } + ], + "issued": 1692789650, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/5 ingressOctets=45763080,egressOctets=47672712,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789650, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ff889786-db4c-4c05-8e40-bfe003025af3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789650 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/6 533", + "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, + "duration": 0.53164616, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786378 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/6 ingressOctets=539369514,egressOctets=672310290,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e65f03b2-ac27-488d-ad01-92475ae7f4fb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/6.0 1058", + "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, + "duration": 0.473341591, + "executed": 1692789563, + "history": [ + { + "status": 0, + "executed": 1692783558 + }, + { + "status": 0, + "executed": 1692783859 + }, + { + "status": 0, + "executed": 1692784159 + }, + { + "status": 0, + "executed": 1692784459 + }, + { + "status": 0, + "executed": 1692784759 + }, + { + "status": 0, + "executed": 1692785059 + }, + { + "status": 0, + "executed": 1692785359 + }, + { + "status": 0, + "executed": 1692785659 + }, + { + "status": 0, + "executed": 1692785959 + }, + { + "status": 0, + "executed": 1692786260 + }, + { + "status": 0, + "executed": 1692786560 + }, + { + "status": 0, + "executed": 1692786860 + }, + { + "status": 0, + "executed": 1692787160 + }, + { + "status": 0, + "executed": 1692787461 + }, + { + "status": 0, + "executed": 1692787761 + }, + { + "status": 0, + "executed": 1692788062 + }, + { + "status": 0, + "executed": 1692788362 + }, + { + "status": 0, + "executed": 1692788662 + }, + { + "status": 0, + "executed": 1692788962 + }, + { + "status": 0, + "executed": 1692789263 + }, + { + "status": 0, + "executed": 1692789563 + } + ], + "issued": 1692789562, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/6.0 ingressOctets=539350878,egressOctets=680216508,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789563, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f2a83058-42c6-40b9-884e-a1ea324a42b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789563 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/7 534", + "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, + "duration": 0.460819121, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783587 + }, + { + "status": 0, + "executed": 1692783887 + }, + { + "status": 0, + "executed": 1692784187 + }, + { + "status": 0, + "executed": 1692784487 + }, + { + "status": 0, + "executed": 1692784787 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785987 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787189 + }, + { + "status": 0, + "executed": 1692787489 + }, + { + "status": 0, + "executed": 1692787789 + }, + { + "status": 0, + "executed": 1692788090 + }, + { + "status": 0, + "executed": 1692788390 + }, + { + "status": 0, + "executed": 1692788690 + }, + { + "status": 0, + "executed": 1692788990 + }, + { + "status": 0, + "executed": 1692789291 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789590, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3730b35a-2394-4caf-8c1c-e6a8fbc31234", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789591 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/8 535", + "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, + "duration": 0.512880436, + "executed": 1692789677, + "history": [ + { + "status": 0, + "executed": 1692783673 + }, + { + "status": 0, + "executed": 1692783973 + }, + { + "status": 0, + "executed": 1692784273 + }, + { + "status": 0, + "executed": 1692784573 + }, + { + "status": 0, + "executed": 1692784873 + }, + { + "status": 0, + "executed": 1692785173 + }, + { + "status": 0, + "executed": 1692785473 + }, + { + "status": 0, + "executed": 1692785774 + }, + { + "status": 0, + "executed": 1692786074 + }, + { + "status": 0, + "executed": 1692786374 + }, + { + "status": 0, + "executed": 1692786674 + }, + { + "status": 0, + "executed": 1692786974 + }, + { + "status": 0, + "executed": 1692787275 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788176 + }, + { + "status": 0, + "executed": 1692788476 + }, + { + "status": 0, + "executed": 1692788776 + }, + { + "status": 0, + "executed": 1692789077 + }, + { + "status": 0, + "executed": 1692789377 + }, + { + "status": 0, + "executed": 1692789677 + } + ], + "issued": 1692789677, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/8 ingressOctets=21119813,egressOctets=76383391,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789677, + "occurrences": 12287, + "occurrences_watermark": 12287, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8637422a-40f3-49a5-947c-b3024f549aae", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789677 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/8.0 1174", + "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, + "duration": 0.501203559, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783595 + }, + { + "status": 0, + "executed": 1692783895 + }, + { + "status": 0, + "executed": 1692784195 + }, + { + "status": 0, + "executed": 1692784495 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787197 + }, + { + "status": 0, + "executed": 1692787497 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788098 + }, + { + "status": 0, + "executed": 1692788398 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789299 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789599, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/8.0 ingressOctets=21114173,egressOctets=84301932,ingressErrors=0,egressErrors=0,ingressOctetsv6=3537860,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-8.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f758af9-37e5-497a-9383-0fab4c270666", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789600 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/9 536", + "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, + "duration": 0.480778745, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/9 ingressOctets=21092853,egressOctets=79980349,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e89a496-6963-47f6-9cc5-eb41ca07514c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net ge-0/1/9.0 1175", + "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, + "duration": 0.46969987, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=ge-0/1/9.0 ingressOctets=21087773,egressOctets=87900026,ingressErrors=0,egressErrors=0,ingressOctetsv6=1028511,egressOctetsv6=1049376,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 12286, + "occurrences_watermark": 12286, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-ge-0-1-9.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8410dedf-3a82-4999-95df-650a15957d12", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net irb.252 602", + "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, + "duration": 0.490267399, + "executed": 1692789532, + "history": [ + { + "status": 0, + "executed": 1692783527 + }, + { + "status": 0, + "executed": 1692783827 + }, + { + "status": 0, + "executed": 1692784127 + }, + { + "status": 0, + "executed": 1692784427 + }, + { + "status": 0, + "executed": 1692784727 + }, + { + "status": 0, + "executed": 1692785028 + }, + { + "status": 0, + "executed": 1692785328 + }, + { + "status": 0, + "executed": 1692785630 + }, + { + "status": 0, + "executed": 1692785929 + }, + { + "status": 0, + "executed": 1692786230 + }, + { + "status": 0, + "executed": 1692786530 + }, + { + "status": 0, + "executed": 1692786830 + }, + { + "status": 0, + "executed": 1692787130 + }, + { + "status": 0, + "executed": 1692787431 + }, + { + "status": 0, + "executed": 1692787731 + }, + { + "status": 0, + "executed": 1692788032 + }, + { + "status": 0, + "executed": 1692788332 + }, + { + "status": 0, + "executed": 1692788632 + }, + { + "status": 0, + "executed": 1692788932 + }, + { + "status": 0, + "executed": 1692789232 + }, + { + "status": 0, + "executed": 1692789532 + } + ], + "issued": 1692789532, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=irb.252 ingressOctets=1994018348476,egressOctets=27939546962,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789532, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-irb.252", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4bda5f80-4c81-4078-9f5d-5031d303e351", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789533 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net irb.260 1051", + "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, + "duration": 0.481061715, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=irb.260 ingressOctets=1296279618,egressOctets=895255814,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-irb.260", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eb095d9b-3f45-4c79-9dad-769a3e8d4c36", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net irb.998 960", + "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, + "duration": 0.463475305, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786392 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=irb.998 ingressOctets=16157775138,egressOctets=7102055599,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 4302, + "occurrences_watermark": 4302, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-irb.998", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aeb8d553-dacf-49c3-b6f9-d1b116fdb4e7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net lt-10/1/0 1002", + "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, + "duration": 0.458163186, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783595 + }, + { + "status": 0, + "executed": 1692783895 + }, + { + "status": 0, + "executed": 1692784195 + }, + { + "status": 0, + "executed": 1692784495 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787197 + }, + { + "status": 0, + "executed": 1692787497 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788098 + }, + { + "status": 0, + "executed": 1692788398 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789299 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789599, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=lt-10/1/0 ingressOctets=213643558942456,egressOctets=213634829489969,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 12284, + "occurrences_watermark": 12284, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-lt-10-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1147b401-dfc9-4d5e-9b7c-9700971b6b41", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789600 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net lt-10/1/0.16 1004", + "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, + "duration": 0.469380928, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783595 + }, + { + "status": 0, + "executed": 1692783895 + }, + { + "status": 0, + "executed": 1692784195 + }, + { + "status": 0, + "executed": 1692784495 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787197 + }, + { + "status": 0, + "executed": 1692787497 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788098 + }, + { + "status": 0, + "executed": 1692788398 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789299 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789599, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=lt-10/1/0.16 ingressOctets=25586524,egressOctets=213452699098504,ingressErrors=0,egressErrors=0,ingressOctetsv6=2136,egressOctetsv6=1116796557235,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 12293, + "occurrences_watermark": 12293, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-lt-10-1-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0af3e7d0-97e0-45c7-806f-828862a1aaee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789600 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net lt-10/1/0.17 1005", + "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, + "duration": 0.465891019, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=lt-10/1/0.17 ingressOctets=109909573538,egressOctets=83930046740,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-lt-10-1-0.17", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "74364d3a-e63e-46d9-9cab-eb98d47a2bde", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net lt-10/1/0.61 1007", + "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, + "duration": 0.471094944, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783691 + }, + { + "status": 0, + "executed": 1692783991 + }, + { + "status": 0, + "executed": 1692784291 + }, + { + "status": 0, + "executed": 1692784592 + }, + { + "status": 0, + "executed": 1692784892 + }, + { + "status": 0, + "executed": 1692785192 + }, + { + "status": 0, + "executed": 1692785492 + }, + { + "status": 0, + "executed": 1692785792 + }, + { + "status": 0, + "executed": 1692786093 + }, + { + "status": 0, + "executed": 1692786393 + }, + { + "status": 0, + "executed": 1692786692 + }, + { + "status": 0, + "executed": 1692786993 + }, + { + "status": 0, + "executed": 1692787293 + }, + { + "status": 0, + "executed": 1692787593 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788494 + }, + { + "status": 0, + "executed": 1692788794 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789694, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=lt-10/1/0.61 ingressOctets=213458081208465,egressOctets=25697140,ingressErrors=0,egressErrors=0,ingressOctetsv6=1122197909132,egressOctetsv6=632,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 12299, + "occurrences_watermark": 12299, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-lt-10-1-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ee60700f-d581-4524-ad62-e7d3fa8c6361", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net lt-10/1/0.71 1006", + "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, + "duration": 0.48834754, + "executed": 1692789648, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784841 + }, + { + "status": 0, + "executed": 1692785141 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785742 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786645 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787546 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789648 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=lt-10/1/0.71 ingressOctets=82260063865,egressOctets=98088488028,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789648, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-lt-10-1-0.71", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "184f7566-883e-4cc5-aaad-03902fa90123", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/0 1019", + "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, + "duration": 0.669260738, + "executed": 1692789639, + "history": [ + { + "status": 0, + "executed": 1692783634 + }, + { + "status": 0, + "executed": 1692783934 + }, + { + "status": 0, + "executed": 1692784234 + }, + { + "status": 0, + "executed": 1692784534 + }, + { + "status": 0, + "executed": 1692784835 + }, + { + "status": 0, + "executed": 1692785135 + }, + { + "status": 0, + "executed": 1692785435 + }, + { + "status": 0, + "executed": 1692785735 + }, + { + "status": 0, + "executed": 1692786036 + }, + { + "status": 0, + "executed": 1692786336 + }, + { + "status": 0, + "executed": 1692786637 + }, + { + "status": 0, + "executed": 1692786936 + }, + { + "status": 0, + "executed": 1692787236 + }, + { + "status": 0, + "executed": 1692787537 + }, + { + "status": 0, + "executed": 1692787837 + }, + { + "status": 0, + "executed": 1692788137 + }, + { + "status": 0, + "executed": 1692788438 + }, + { + "status": 0, + "executed": 1692788738 + }, + { + "status": 0, + "executed": 1692789038 + }, + { + "status": 0, + "executed": 1692789339 + }, + { + "status": 0, + "executed": 1692789639 + } + ], + "issued": 1692789638, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789639, + "occurrences": 12281, + "occurrences_watermark": 12281, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "870d77e1-ee7b-406f-8e36-170f4a0ac5c7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789639 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/1 1020", + "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, + "duration": 0.594541627, + "executed": 1692789630, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786628 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789630 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/1 ingressOctets=13245186041217,egressOctets=6196001339193,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789630, + "occurrences": 12284, + "occurrences_watermark": 12284, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "60a908fc-c3bc-4546-80ab-3ad92cce1f00", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2 1021", + "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, + "duration": 0.478665062, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2 ingressOctets=77192263862497,egressOctets=47096740956149,ingressErrors=518,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0dd46158-bfeb-45e6-a398-bc376cd7cd5d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.11 979", + "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, + "duration": 0.488924721, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.11 ingressOctets=55884008532172,egressOctets=6091894612,ingressErrors=0,egressErrors=0,ingressOctetsv6=816938260,egressOctetsv6=46044259,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 12282, + "occurrences_watermark": 12282, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3166b5e2-6a98-40d9-896a-9a19cdde21bc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.12 980", + "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, + "duration": 0.459195958, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783454 + }, + { + "status": 0, + "executed": 1692783754 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784355 + }, + { + "status": 0, + "executed": 1692784655 + }, + { + "status": 0, + "executed": 1692784955 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785556 + }, + { + "status": 0, + "executed": 1692785856 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786457 + }, + { + "status": 0, + "executed": 1692786757 + }, + { + "status": 0, + "executed": 1692787057 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787658 + }, + { + "status": 0, + "executed": 1692787958 + }, + { + "status": 0, + "executed": 1692788258 + }, + { + "status": 0, + "executed": 1692788558 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.12 ingressOctets=0,egressOctets=14410420,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "293d2da3-9813-4e81-945c-1d0425666200", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.13 1182", + "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, + "duration": 0.521742801, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783621 + }, + { + "status": 0, + "executed": 1692783921 + }, + { + "status": 0, + "executed": 1692784221 + }, + { + "status": 0, + "executed": 1692784521 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785422 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786323 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786923 + }, + { + "status": 0, + "executed": 1692787223 + }, + { + "status": 0, + "executed": 1692787524 + }, + { + "status": 0, + "executed": 1692787824 + }, + { + "status": 0, + "executed": 1692788124 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789025 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789625, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.13 ingressOctets=8248737718,egressOctets=5762528938,ingressErrors=0,egressErrors=0,ingressOctetsv6=7253470,egressOctetsv6=7253470,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 12282, + "occurrences_watermark": 12282, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "86823a08-6259-4ad0-8b39-ec756aa576f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.14 1183", + "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, + "duration": 0.44657537, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783490 + }, + { + "status": 0, + "executed": 1692783790 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784991 + }, + { + "status": 0, + "executed": 1692785291 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787393 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787994 + }, + { + "status": 0, + "executed": 1692788294 + }, + { + "status": 0, + "executed": 1692788594 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789494, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.14 ingressOctets=0,egressOctets=182152870,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 12281, + "occurrences_watermark": 12281, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.14", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e97ac31-7d5d-4e32-9412-51634f5e9819", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.17 1847", + "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, + "duration": 0.612218875, + "executed": 1692789441, + "history": [ + { + "status": 0, + "executed": 1692783437 + }, + { + "status": 0, + "executed": 1692783737 + }, + { + "status": 0, + "executed": 1692784037 + }, + { + "status": 0, + "executed": 1692784337 + }, + { + "status": 0, + "executed": 1692784637 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785238 + }, + { + "status": 0, + "executed": 1692785538 + }, + { + "status": 0, + "executed": 1692785838 + }, + { + "status": 0, + "executed": 1692786139 + }, + { + "status": 0, + "executed": 1692786439 + }, + { + "status": 0, + "executed": 1692786739 + }, + { + "status": 0, + "executed": 1692787039 + }, + { + "status": 0, + "executed": 1692787340 + }, + { + "status": 0, + "executed": 1692787640 + }, + { + "status": 0, + "executed": 1692787940 + }, + { + "status": 0, + "executed": 1692788240 + }, + { + "status": 0, + "executed": 1692788540 + }, + { + "status": 0, + "executed": 1692788841 + }, + { + "status": 0, + "executed": 1692789141 + }, + { + "status": 0, + "executed": 1692789441 + } + ], + "issued": 1692789441, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.17 ingressOctets=4414574539232,egressOctets=10603596813258,ingressErrors=0,egressErrors=0,ingressOctetsv6=611741729446,egressOctetsv6=1415021400710,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789441, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.17", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "26a9a01c-1d4c-4794-ac0d-f1032c989b19", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789441 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.18 1862", + "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, + "duration": 0.483673353, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.18 ingressOctets=16773636098335,egressOctets=36214656080109,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.18", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a15a3552-49ac-4932-b4eb-75288eb8417a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.19 610", + "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, + "duration": 0.445370919, + "executed": 1692789537, + "history": [ + { + "status": 0, + "executed": 1692783533 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784434 + }, + { + "status": 0, + "executed": 1692784734 + }, + { + "status": 0, + "executed": 1692785034 + }, + { + "status": 0, + "executed": 1692785334 + }, + { + "status": 0, + "executed": 1692785634 + }, + { + "status": 0, + "executed": 1692785934 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786535 + }, + { + "status": 0, + "executed": 1692786835 + }, + { + "status": 0, + "executed": 1692787135 + }, + { + "status": 0, + "executed": 1692787436 + }, + { + "status": 0, + "executed": 1692787736 + }, + { + "status": 0, + "executed": 1692788037 + }, + { + "status": 0, + "executed": 1692788337 + }, + { + "status": 0, + "executed": 1692788637 + }, + { + "status": 0, + "executed": 1692788937 + }, + { + "status": 0, + "executed": 1692789237 + }, + { + "status": 0, + "executed": 1692789537 + } + ], + "issued": 1692789537, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.19 ingressOctets=17435137,egressOctets=192918958,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789537, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.19", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "77cff271-e2e8-438e-abda-f7e10d610e71", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789538 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.27 623", + "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, + "duration": 0.470586234, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786661 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.27 ingressOctets=144225038,egressOctets=152849269,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.27", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "adb2f72f-3dc0-4071-8131-bdead0169b05", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789664 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.3007 797", + "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, + "duration": 0.492896388, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783573 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.3007 ingressOctets=8013963690,egressOctets=6380898995,ingressErrors=0,egressErrors=0,ingressOctetsv6=1426578445,egressOctetsv6=1169661951,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.3007", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "830f7557-eb20-4830-ac37-6db08885daba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.3015 600", + "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, + "duration": 0.517085079, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.3015 ingressOctets=226602850,egressOctets=278991911,ingressErrors=0,egressErrors=0,ingressOctetsv6=160,egressOctetsv6=160,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 10047, + "occurrences_watermark": 10047, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.3015", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c2c55671-54df-4170-be3d-41a40114ca2d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3349, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/2.991 658", + "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, + "duration": 0.478754416, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784502 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786003 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/2.991 ingressOctets=47682641419,egressOctets=1689929098,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-2.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "99ce74b9-640a-4f52-8598-ae91258e798e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/3 1022", + "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, + "duration": 0.527478492, + "executed": 1692789712, + "history": [ + { + "status": 0, + "executed": 1692783709 + }, + { + "status": 0, + "executed": 1692784009 + }, + { + "status": 0, + "executed": 1692784309 + }, + { + "status": 0, + "executed": 1692784609 + }, + { + "status": 0, + "executed": 1692784909 + }, + { + "status": 0, + "executed": 1692785209 + }, + { + "status": 0, + "executed": 1692785509 + }, + { + "status": 0, + "executed": 1692785810 + }, + { + "status": 0, + "executed": 1692786110 + }, + { + "status": 0, + "executed": 1692786411 + }, + { + "status": 0, + "executed": 1692786711 + }, + { + "status": 0, + "executed": 1692787011 + }, + { + "status": 0, + "executed": 1692787311 + }, + { + "status": 0, + "executed": 1692787611 + }, + { + "status": 0, + "executed": 1692787911 + }, + { + "status": 0, + "executed": 1692788212 + }, + { + "status": 0, + "executed": 1692788512 + }, + { + "status": 0, + "executed": 1692788812 + }, + { + "status": 0, + "executed": 1692789112 + }, + { + "status": 0, + "executed": 1692789412 + }, + { + "status": 0, + "executed": 1692789712 + } + ], + "issued": 1692789712, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/3 ingressOctets=12739508187883,egressOctets=6378520003872,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789712, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "86ab7030-e8ee-473e-b1ee-06aa626a251a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789713 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/5 1024", + "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, + "duration": 0.583121645, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/5 ingressOctets=1968152958982,egressOctets=212479842166,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e67cb3e4-fb48-4b40-a91f-3e048f5704ff", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/5.46 749", + "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, + "duration": 0.508852753, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/5.46 ingressOctets=1968134312718,egressOctets=212478946426,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-5.46", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ea2bc9b2-bf7f-4daf-ab69-0115fbf33a04", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/6 1025", + "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, + "duration": 0.503414825, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783573 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/6 ingressOctets=29130937710598,egressOctets=6808459225105,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 12295, + "occurrences_watermark": 12295, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "28bbd0c8-24db-4bb3-b26b-a83fd6539ce4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/7 1026", + "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, + "duration": 0.515512444, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787213 + }, + { + "status": 0, + "executed": 1692787514 + }, + { + "status": 0, + "executed": 1692787814 + }, + { + "status": 0, + "executed": 1692788115 + }, + { + "status": 0, + "executed": 1692788414 + }, + { + "status": 0, + "executed": 1692788715 + }, + { + "status": 0, + "executed": 1692789015 + }, + { + "status": 0, + "executed": 1692789315 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789615, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/7 ingressOctets=74666,egressOctets=50410132,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 12293, + "occurrences_watermark": 12293, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9fb87a71-f17e-4807-ba23-0b069bace7a7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789616 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/7.10 560", + "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, + "duration": 0.447598111, + "executed": 1692789656, + "history": [ + { + "status": 0, + "executed": 1692783651 + }, + { + "status": 0, + "executed": 1692783951 + }, + { + "status": 0, + "executed": 1692784251 + }, + { + "status": 0, + "executed": 1692784551 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785152 + }, + { + "status": 0, + "executed": 1692785452 + }, + { + "status": 0, + "executed": 1692785753 + }, + { + "status": 0, + "executed": 1692786053 + }, + { + "status": 0, + "executed": 1692786353 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786953 + }, + { + "status": 0, + "executed": 1692787253 + }, + { + "status": 0, + "executed": 1692787554 + }, + { + "status": 0, + "executed": 1692787854 + }, + { + "status": 0, + "executed": 1692788154 + }, + { + "status": 0, + "executed": 1692788455 + }, + { + "status": 0, + "executed": 1692788755 + }, + { + "status": 0, + "executed": 1692789055 + }, + { + "status": 0, + "executed": 1692789356 + }, + { + "status": 0, + "executed": 1692789656 + } + ], + "issued": 1692789655, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/7.10 ingressOctets=74666,egressOctets=74518,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789656, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-7.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c40215ae-da8a-4560-b186-ec3543494ca5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789656 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/8 1027", + "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, + "duration": 0.537063701, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/8 ingressOctets=74518,egressOctets=52525128,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cad9f6fa-3667-4840-a64a-611af024ccfb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/8.11 665", + "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, + "duration": 0.459172946, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783568 + }, + { + "status": 0, + "executed": 1692783868 + }, + { + "status": 0, + "executed": 1692784168 + }, + { + "status": 0, + "executed": 1692784468 + }, + { + "status": 0, + "executed": 1692784768 + }, + { + "status": 0, + "executed": 1692785068 + }, + { + "status": 0, + "executed": 1692785368 + }, + { + "status": 0, + "executed": 1692785668 + }, + { + "status": 0, + "executed": 1692785969 + }, + { + "status": 0, + "executed": 1692786269 + }, + { + "status": 0, + "executed": 1692786569 + }, + { + "status": 0, + "executed": 1692786869 + }, + { + "status": 0, + "executed": 1692787169 + }, + { + "status": 0, + "executed": 1692787470 + }, + { + "status": 0, + "executed": 1692787770 + }, + { + "status": 0, + "executed": 1692788071 + }, + { + "status": 0, + "executed": 1692788371 + }, + { + "status": 0, + "executed": 1692788671 + }, + { + "status": 0, + "executed": 1692788971 + }, + { + "status": 0, + "executed": 1692789272 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/8.11 ingressOctets=74518,egressOctets=74666,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-8.11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4184571c-7ff5-42e0-8e05-94a0196b0d60", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/8.15 659", + "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, + "duration": 0.488702576, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/8.15 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-8.15", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "51820293-ed24-4aeb-a8bc-78a98d199920", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-1/2/9 1028", + "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, + "duration": 0.563367329, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-1/2/9 ingressOctets=12651720,egressOctets=45546192,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-1-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cd4bd3da-b896-414f-bcc9-0b6b1bcd54b9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/0 1565", + "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, + "duration": 0.525304131, + "executed": 1692789659, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788458 + }, + { + "status": 0, + "executed": 1692788758 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789359 + }, + { + "status": 0, + "executed": 1692789659 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/0 ingressOctets=278766590641704,egressOctets=142714001065396,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789659, + "occurrences": 12288, + "occurrences_watermark": 12288, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a7a83e73-7376-4a6e-96e8-dff26030b8cc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/1 1566", + "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, + "duration": 0.516284612, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/1 ingressOctets=1688320279835,egressOctets=13938567370617,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "29ecf366-5e6c-447d-ac57-de30e5fb00cd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/1.0 1018", + "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, + "duration": 0.535431501, + "executed": 1692789595, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784791 + }, + { + "status": 0, + "executed": 1692785091 + }, + { + "status": 0, + "executed": 1692785391 + }, + { + "status": 0, + "executed": 1692785691 + }, + { + "status": 0, + "executed": 1692785992 + }, + { + "status": 0, + "executed": 1692786292 + }, + { + "status": 0, + "executed": 1692786592 + }, + { + "status": 0, + "executed": 1692786892 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787793 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788694 + }, + { + "status": 0, + "executed": 1692788994 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789595 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/1.0 ingressOctets=1688327912306,egressOctets=13938676533762,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789595, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a9e79c1-2c43-4471-abe7-edc411ef3c2a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789595 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/2 1572", + "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, + "duration": 0.477849136, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/2 ingressOctets=3734067739,egressOctets=7975275471,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 4302, + "occurrences_watermark": 4302, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c2ec6c0c-bc5e-411a-8412-6f3cc1ebc0af", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/2.0 1015", + "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, + "duration": 0.45381664, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783579 + }, + { + "status": 0, + "executed": 1692783879 + }, + { + "status": 0, + "executed": 1692784179 + }, + { + "status": 0, + "executed": 1692784479 + }, + { + "status": 0, + "executed": 1692784779 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785980 + }, + { + "status": 0, + "executed": 1692786280 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787481 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788082 + }, + { + "status": 0, + "executed": 1692788382 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789283 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/2.0 ingressOctets=3734007139,egressOctets=7983136382,ingressErrors=0,egressErrors=0,ingressOctetsv6=1568107375,egressOctetsv6=6782747181,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "69cb3bac-26c5-466a-9f1c-31e004ee74f8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789584 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/4 1568", + "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, + "duration": 1.236815025, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783516 + }, + { + "status": 0, + "executed": 1692783816 + }, + { + "status": 0, + "executed": 1692784116 + }, + { + "status": 0, + "executed": 1692784416 + }, + { + "status": 0, + "executed": 1692784716 + }, + { + "status": 0, + "executed": 1692785017 + }, + { + "status": 0, + "executed": 1692785317 + }, + { + "status": 0, + "executed": 1692785617 + }, + { + "status": 0, + "executed": 1692785917 + }, + { + "status": 0, + "executed": 1692786218 + }, + { + "status": 0, + "executed": 1692786518 + }, + { + "status": 0, + "executed": 1692786818 + }, + { + "status": 0, + "executed": 1692787118 + }, + { + "status": 0, + "executed": 1692787419 + }, + { + "status": 0, + "executed": 1692787719 + }, + { + "status": 0, + "executed": 1692788020 + }, + { + "status": 0, + "executed": 1692788320 + }, + { + "status": 0, + "executed": 1692788620 + }, + { + "status": 0, + "executed": 1692788920 + }, + { + "status": 0, + "executed": 1692789220 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789523, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/4 ingressOctets=354698984879,egressOctets=393717237944,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 12293, + "occurrences_watermark": 12293, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1cc1849e-4d4b-4c38-9884-40a4019c8694", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/4.0 612", + "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, + "duration": 0.619809332, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785595 + }, + { + "status": 0, + "executed": 1692785895 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/4.0 ingressOctets=354698981903,egressOctets=393722159095,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 7985, + "occurrences_watermark": 7985, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a276933-b1f8-4dc1-b862-a59db448e6c0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2662, + "timestamp": 1692789500 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/5 1569", + "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, + "duration": 0.489333448, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786404 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/5 ingressOctets=53996218,egressOctets=51889855,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a190fd24-2842-43af-a616-169bd9ebd3a4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/5.10 666", + "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, + "duration": 0.501738454, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/5.10 ingressOctets=74518,egressOctets=74666,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 4302, + "occurrences_watermark": 4302, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-5.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cbd6c88f-847f-499a-bc0e-b9cad7eec9a6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/6 1570", + "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, + "duration": 0.529761939, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/6 ingressOctets=51889077,egressOctets=53996218,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 4302, + "occurrences_watermark": 4302, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2ab08126-c974-49d9-b4b3-1914a40445b1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/6.11 675", + "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, + "duration": 0.497951576, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784127 + }, + { + "status": 0, + "executed": 1692784427 + }, + { + "status": 0, + "executed": 1692784727 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785630 + }, + { + "status": 0, + "executed": 1692785929 + }, + { + "status": 0, + "executed": 1692786230 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786830 + }, + { + "status": 0, + "executed": 1692787130 + }, + { + "status": 0, + "executed": 1692787430 + }, + { + "status": 0, + "executed": 1692787731 + }, + { + "status": 0, + "executed": 1692788031 + }, + { + "status": 0, + "executed": 1692788331 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788932 + }, + { + "status": 0, + "executed": 1692789232 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789531, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/6.11 ingressOctets=74666,egressOctets=74518,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 12299, + "occurrences_watermark": 12299, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-6.11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dcf23971-5af1-4c66-9c7d-8075094a74d8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/6.12 794", + "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, + "duration": 0.475494844, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783638 + }, + { + "status": 0, + "executed": 1692783938 + }, + { + "status": 0, + "executed": 1692784238 + }, + { + "status": 0, + "executed": 1692784538 + }, + { + "status": 0, + "executed": 1692784838 + }, + { + "status": 0, + "executed": 1692785138 + }, + { + "status": 0, + "executed": 1692785439 + }, + { + "status": 0, + "executed": 1692785739 + }, + { + "status": 0, + "executed": 1692786039 + }, + { + "status": 0, + "executed": 1692786340 + }, + { + "status": 0, + "executed": 1692786640 + }, + { + "status": 0, + "executed": 1692786940 + }, + { + "status": 0, + "executed": 1692787240 + }, + { + "status": 0, + "executed": 1692787540 + }, + { + "status": 0, + "executed": 1692787841 + }, + { + "status": 0, + "executed": 1692788141 + }, + { + "status": 0, + "executed": 1692788442 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789343 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/6.12 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 12284, + "occurrences_watermark": 12284, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-6.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0a9ad5aa-f6e3-405d-8392-1521b5f2304c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/0/7 1571", + "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, + "duration": 0.447928614, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787307 + }, + { + "status": 0, + "executed": 1692787607 + }, + { + "status": 0, + "executed": 1692787907 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788808 + }, + { + "status": 0, + "executed": 1692789108 + }, + { + "status": 0, + "executed": 1692789408 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/0/7 ingressOctets=13543471428052,egressOctets=6011340119619,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 12284, + "occurrences_watermark": 12284, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4ead6362-8045-4923-a0d6-e6e54e3f2018", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/0 1573", + "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, + "duration": 0.826501787, + "executed": 1692789518, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784113 + }, + { + "status": 0, + "executed": 1692784413 + }, + { + "status": 0, + "executed": 1692784713 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789518 + } + ], + "issued": 1692789517, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789518, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8bc5717e-c94e-402e-93fc-e5c787e429ec", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789518 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/1 1574", + "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, + "duration": 1.556781312, + "executed": 1692789518, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784113 + }, + { + "status": 0, + "executed": 1692784413 + }, + { + "status": 0, + "executed": 1692784713 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789518 + } + ], + "issued": 1692789517, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789518, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d32c7604-8a19-4daa-8fab-fae4764dc804", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789519 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/2 1576", + "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, + "duration": 0.500269032, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/1/2 ingressOctets=13453851538946,egressOctets=6200537747068,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 12288, + "occurrences_watermark": 12288, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6360a938-c27e-4538-8893-d67670c2b41e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/3 1578", + "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, + "duration": 0.493004772, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784576 + }, + { + "status": 0, + "executed": 1692784876 + }, + { + "status": 0, + "executed": 1692785176 + }, + { + "status": 0, + "executed": 1692785476 + }, + { + "status": 0, + "executed": 1692785776 + }, + { + "status": 0, + "executed": 1692786077 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786977 + }, + { + "status": 0, + "executed": 1692787277 + }, + { + "status": 0, + "executed": 1692787578 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788178 + }, + { + "status": 0, + "executed": 1692788478 + }, + { + "status": 0, + "executed": 1692788778 + }, + { + "status": 0, + "executed": 1692789079 + }, + { + "status": 0, + "executed": 1692789379 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/1/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 12286, + "occurrences_watermark": 12286, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "102b36cb-a421-450a-9a3b-583a7555b5de", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/4 1579", + "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, + "duration": 0.437039987, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783663 + }, + { + "status": 0, + "executed": 1692783963 + }, + { + "status": 0, + "executed": 1692784263 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785764 + }, + { + "status": 0, + "executed": 1692786064 + }, + { + "status": 0, + "executed": 1692786364 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787265 + }, + { + "status": 0, + "executed": 1692787565 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788466 + }, + { + "status": 0, + "executed": 1692788766 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789367 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/1/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 12286, + "occurrences_watermark": 12286, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dec2c9ef-f877-4882-a968-09693fdebfba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/4.1 773", + "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, + "duration": 0.484956678, + "executed": 1692789689, + "history": [ + { + "status": 0, + "executed": 1692783686 + }, + { + "status": 0, + "executed": 1692783986 + }, + { + "status": 0, + "executed": 1692784286 + }, + { + "status": 0, + "executed": 1692784587 + }, + { + "status": 0, + "executed": 1692784887 + }, + { + "status": 0, + "executed": 1692785187 + }, + { + "status": 0, + "executed": 1692785487 + }, + { + "status": 0, + "executed": 1692785787 + }, + { + "status": 0, + "executed": 1692786088 + }, + { + "status": 0, + "executed": 1692786388 + }, + { + "status": 0, + "executed": 1692786687 + }, + { + "status": 0, + "executed": 1692786988 + }, + { + "status": 0, + "executed": 1692787288 + }, + { + "status": 0, + "executed": 1692787588 + }, + { + "status": 0, + "executed": 1692787888 + }, + { + "status": 0, + "executed": 1692788188 + }, + { + "status": 0, + "executed": 1692788489 + }, + { + "status": 0, + "executed": 1692788789 + }, + { + "status": 0, + "executed": 1692789089 + }, + { + "status": 0, + "executed": 1692789389 + }, + { + "status": 0, + "executed": 1692789689 + } + ], + "issued": 1692789689, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/1/4.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789689, + "occurrences": 4302, + "occurrences_watermark": 4302, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-1-4.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a11ca1e1-8acd-4c66-b2b6-11453e7923c7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789689 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/5 1580", + "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, + "duration": 0.467789188, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/1/5 ingressOctets=0,egressOctets=48997360,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 12299, + "occurrences_watermark": 12299, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6eafa318-67ec-4b22-ad4f-b2f0b9144563", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/6 1575", + "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, + "duration": 0.467386891, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783553 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/1/6 ingressOctets=0,egressOctets=49001408,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-1-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a632c67-a9df-4e9a-9019-c3e955883cf7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/1/7 1577", + "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, + "duration": 0.445913669, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783856 + }, + { + "status": 0, + "executed": 1692784156 + }, + { + "status": 0, + "executed": 1692784456 + }, + { + "status": 0, + "executed": 1692784756 + }, + { + "status": 0, + "executed": 1692785057 + }, + { + "status": 0, + "executed": 1692785357 + }, + { + "status": 0, + "executed": 1692785657 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786258 + }, + { + "status": 0, + "executed": 1692786558 + }, + { + "status": 0, + "executed": 1692786858 + }, + { + "status": 0, + "executed": 1692787158 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787759 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788660 + }, + { + "status": 0, + "executed": 1692788960 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/1/7 ingressOctets=0,egressOctets=48984480,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 12296, + "occurrences_watermark": 12296, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-1-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d6753091-1a75-46b1-a53a-f821b004bfc8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/0 1588", + "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, + "duration": 0.496990075, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/0 ingressOctets=0,egressOctets=48049100,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1315486b-f4de-4b2f-bfaa-3ac32c496e3c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/1 1581", + "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, + "duration": 0.510240703, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f143bf4-8b55-4766-9e22-883976542281", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/2 1582", + "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, + "duration": 0.510349686, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 12285, + "occurrences_watermark": 12285, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "42bf6320-1f9a-444a-bd56-36a9c3444b8d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789578 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/3 1583", + "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, + "duration": 0.555477486, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783590 + }, + { + "status": 0, + "executed": 1692783890 + }, + { + "status": 0, + "executed": 1692784190 + }, + { + "status": 0, + "executed": 1692784490 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785991 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786591 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787192 + }, + { + "status": 0, + "executed": 1692787492 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788093 + }, + { + "status": 0, + "executed": 1692788393 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789294 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789594, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/3 ingressOctets=0,egressOctets=51919920,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "79ce7b48-d0ff-4c67-bad4-a8a756549cf9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/4 1584", + "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, + "duration": 0.538844348, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786302 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0c56653c-680f-4eb8-a9a1-21c753bc1d54", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/5 1585", + "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, + "duration": 0.518805995, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/5 ingressOctets=511523473632,egressOctets=560145873790,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4a8026e9-15fb-4560-80ba-3c965e667709", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789578 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/5.1000 751", + "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, + "duration": 0.489156424, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/5.1000 ingressOctets=183986501,egressOctets=119690937,ingressErrors=0,egressErrors=0,ingressOctetsv6=81994,egressOctetsv6=504492,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 12287, + "occurrences_watermark": 12287, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-5.1000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2a8ccc07-06d9-4f4b-89b5-c52dd41c040f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789578 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/5.3179 761", + "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, + "duration": 0.514019382, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785785 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786686 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787286 + }, + { + "status": 0, + "executed": 1692787586 + }, + { + "status": 0, + "executed": 1692787886 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788787 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789687, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/5.3179 ingressOctets=300655724424,egressOctets=264640761458,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 4302, + "occurrences_watermark": 4302, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-5.3179", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eb88e593-b075-4f51-bb6a-17e5e6a21177", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789688 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/6 1586", + "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, + "duration": 0.677504548, + "executed": 1692789657, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786655 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789657 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/6 ingressOctets=1786052208873,egressOctets=13434034850515,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789657, + "occurrences": 12285, + "occurrences_watermark": 12285, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5391c404-8ea5-44a5-95e8-aacc464b62a1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/6.0 1029", + "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, + "duration": 0.514814376, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784518 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786020 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789324 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/6.0 ingressOctets=1786034783071,egressOctets=13433893337962,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aa6237dd-878c-4109-8ca0-a4a5bebecdb1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789624 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7 1587", + "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, + "duration": 0.499231963, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783460 + }, + { + "status": 0, + "executed": 1692783760 + }, + { + "status": 0, + "executed": 1692784060 + }, + { + "status": 0, + "executed": 1692784361 + }, + { + "status": 0, + "executed": 1692784661 + }, + { + "status": 0, + "executed": 1692784961 + }, + { + "status": 0, + "executed": 1692785261 + }, + { + "status": 0, + "executed": 1692785562 + }, + { + "status": 0, + "executed": 1692785862 + }, + { + "status": 0, + "executed": 1692786162 + }, + { + "status": 0, + "executed": 1692786463 + }, + { + "status": 0, + "executed": 1692786763 + }, + { + "status": 0, + "executed": 1692787063 + }, + { + "status": 0, + "executed": 1692787363 + }, + { + "status": 0, + "executed": 1692787664 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788265 + }, + { + "status": 0, + "executed": 1692788565 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789465, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/7 ingressOctets=314714449925,egressOctets=345861370317,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 4301, + "occurrences_watermark": 4301, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c62a19c6-ad65-4327-b8e7-f3f1b09c2be0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789466 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/2/7.0 613", + "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, + "duration": 0.860404838, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784120 + }, + { + "status": 0, + "executed": 1692784420 + }, + { + "status": 0, + "executed": 1692784720 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785621 + }, + { + "status": 0, + "executed": 1692785921 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786822 + }, + { + "status": 0, + "executed": 1692787122 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787723 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788924 + }, + { + "status": 0, + "executed": 1692789224 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/2/7.0 ingressOctets=314714459089,egressOctets=345866695057,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 7985, + "occurrences_watermark": 7985, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-2-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b843f1da-5743-48b2-af4e-ed3b3d41a073", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2662, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/0 1589", + "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, + "duration": 0.477510009, + "executed": 1692789641, + "history": [ + { + "status": 0, + "executed": 1692783637 + }, + { + "status": 0, + "executed": 1692783937 + }, + { + "status": 0, + "executed": 1692784237 + }, + { + "status": 0, + "executed": 1692784537 + }, + { + "status": 0, + "executed": 1692784837 + }, + { + "status": 0, + "executed": 1692785137 + }, + { + "status": 0, + "executed": 1692785438 + }, + { + "status": 0, + "executed": 1692785738 + }, + { + "status": 0, + "executed": 1692786039 + }, + { + "status": 0, + "executed": 1692786339 + }, + { + "status": 0, + "executed": 1692786638 + }, + { + "status": 0, + "executed": 1692786939 + }, + { + "status": 0, + "executed": 1692787239 + }, + { + "status": 0, + "executed": 1692787539 + }, + { + "status": 0, + "executed": 1692787840 + }, + { + "status": 0, + "executed": 1692788140 + }, + { + "status": 0, + "executed": 1692788440 + }, + { + "status": 0, + "executed": 1692788741 + }, + { + "status": 0, + "executed": 1692789041 + }, + { + "status": 0, + "executed": 1692789341 + }, + { + "status": 0, + "executed": 1692789641 + } + ], + "issued": 1692789641, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/0 ingressOctets=15997155676,egressOctets=25600880252,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789641, + "occurrences": 12285, + "occurrences_watermark": 12285, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cbfe6c7a-8512-43c3-9445-06cee3cf38e6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789641 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/0.0 670", + "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, + "duration": 0.476326509, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/0.0 ingressOctets=15997028683,egressOctets=25608705516,ingressErrors=0,egressErrors=0,ingressOctetsv6=9640649701,egressOctetsv6=18936910789,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a74689b-fca3-4462-9c0e-683b48e6f3b2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/1 1590", + "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, + "duration": 0.488330127, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783851 + }, + { + "status": 0, + "executed": 1692784151 + }, + { + "status": 0, + "executed": 1692784451 + }, + { + "status": 0, + "executed": 1692784751 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787453 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788054 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788654 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789554, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/1 ingressOctets=16414069746331,egressOctets=21869155518118,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 12294, + "occurrences_watermark": 12294, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6be37013-c5fa-4378-a017-7192841f772e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789555 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/1.0 671", + "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, + "duration": 0.453785553, + "executed": 1692789621, + "history": [ + { + "status": 0, + "executed": 1692783616 + }, + { + "status": 0, + "executed": 1692783916 + }, + { + "status": 0, + "executed": 1692784216 + }, + { + "status": 0, + "executed": 1692784516 + }, + { + "status": 0, + "executed": 1692784817 + }, + { + "status": 0, + "executed": 1692785117 + }, + { + "status": 0, + "executed": 1692785417 + }, + { + "status": 0, + "executed": 1692785717 + }, + { + "status": 0, + "executed": 1692786019 + }, + { + "status": 0, + "executed": 1692786319 + }, + { + "status": 0, + "executed": 1692786618 + }, + { + "status": 0, + "executed": 1692786919 + }, + { + "status": 0, + "executed": 1692787219 + }, + { + "status": 0, + "executed": 1692787519 + }, + { + "status": 0, + "executed": 1692787820 + }, + { + "status": 0, + "executed": 1692788120 + }, + { + "status": 0, + "executed": 1692788421 + }, + { + "status": 0, + "executed": 1692788721 + }, + { + "status": 0, + "executed": 1692789021 + }, + { + "status": 0, + "executed": 1692789322 + }, + { + "status": 0, + "executed": 1692789621 + } + ], + "issued": 1692789621, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/1.0 ingressOctets=16416741001599,egressOctets=21869187649448,ingressErrors=0,egressErrors=0,ingressOctetsv6=6825020541509,egressOctetsv6=7505842014958,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789621, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1e508179-232e-40c8-b187-c964347d2453", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789622 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/2 1591", + "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, + "duration": 0.527048168, + "executed": 1692789621, + "history": [ + { + "status": 0, + "executed": 1692783616 + }, + { + "status": 0, + "executed": 1692783916 + }, + { + "status": 0, + "executed": 1692784216 + }, + { + "status": 0, + "executed": 1692784516 + }, + { + "status": 0, + "executed": 1692784817 + }, + { + "status": 0, + "executed": 1692785117 + }, + { + "status": 0, + "executed": 1692785417 + }, + { + "status": 0, + "executed": 1692785717 + }, + { + "status": 0, + "executed": 1692786019 + }, + { + "status": 0, + "executed": 1692786319 + }, + { + "status": 0, + "executed": 1692786618 + }, + { + "status": 0, + "executed": 1692786919 + }, + { + "status": 0, + "executed": 1692787219 + }, + { + "status": 0, + "executed": 1692787519 + }, + { + "status": 0, + "executed": 1692787820 + }, + { + "status": 0, + "executed": 1692788120 + }, + { + "status": 0, + "executed": 1692788421 + }, + { + "status": 0, + "executed": 1692788721 + }, + { + "status": 0, + "executed": 1692789021 + }, + { + "status": 0, + "executed": 1692789322 + }, + { + "status": 0, + "executed": 1692789621 + } + ], + "issued": 1692789621, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/2 ingressOctets=218405533926,egressOctets=183351239891,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789621, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "12d338ff-bf15-40af-bfc3-d0615fe6a02f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789622 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/2.22 766", + "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, + "duration": 0.555368447, + "executed": 1692789639, + "history": [ + { + "status": 0, + "executed": 1692783634 + }, + { + "status": 0, + "executed": 1692783934 + }, + { + "status": 0, + "executed": 1692784234 + }, + { + "status": 0, + "executed": 1692784534 + }, + { + "status": 0, + "executed": 1692784835 + }, + { + "status": 0, + "executed": 1692785135 + }, + { + "status": 0, + "executed": 1692785435 + }, + { + "status": 0, + "executed": 1692785735 + }, + { + "status": 0, + "executed": 1692786036 + }, + { + "status": 0, + "executed": 1692786336 + }, + { + "status": 0, + "executed": 1692786637 + }, + { + "status": 0, + "executed": 1692786936 + }, + { + "status": 0, + "executed": 1692787236 + }, + { + "status": 0, + "executed": 1692787537 + }, + { + "status": 0, + "executed": 1692787837 + }, + { + "status": 0, + "executed": 1692788137 + }, + { + "status": 0, + "executed": 1692788438 + }, + { + "status": 0, + "executed": 1692788738 + }, + { + "status": 0, + "executed": 1692789038 + }, + { + "status": 0, + "executed": 1692789339 + }, + { + "status": 0, + "executed": 1692789639 + } + ], + "issued": 1692789638, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/2.22 ingressOctets=218401359529,egressOctets=183301052834,ingressErrors=0,egressErrors=0,ingressOctetsv6=90743054183,egressOctetsv6=76265677076,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789639, + "occurrences": 12282, + "occurrences_watermark": 12282, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-2.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b299a77b-8cdc-4fda-9017-663851f392b0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789639 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/2.904 785", + "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, + "duration": 0.498773459, + "executed": 1692789508, + "history": [ + { + "status": 0, + "executed": 1692783504 + }, + { + "status": 0, + "executed": 1692783804 + }, + { + "status": 0, + "executed": 1692784104 + }, + { + "status": 0, + "executed": 1692784404 + }, + { + "status": 0, + "executed": 1692784704 + }, + { + "status": 0, + "executed": 1692785005 + }, + { + "status": 0, + "executed": 1692785305 + }, + { + "status": 0, + "executed": 1692785605 + }, + { + "status": 0, + "executed": 1692785905 + }, + { + "status": 0, + "executed": 1692786206 + }, + { + "status": 0, + "executed": 1692786506 + }, + { + "status": 0, + "executed": 1692786806 + }, + { + "status": 0, + "executed": 1692787106 + }, + { + "status": 0, + "executed": 1692787407 + }, + { + "status": 0, + "executed": 1692787707 + }, + { + "status": 0, + "executed": 1692788008 + }, + { + "status": 0, + "executed": 1692788308 + }, + { + "status": 0, + "executed": 1692788608 + }, + { + "status": 0, + "executed": 1692788908 + }, + { + "status": 0, + "executed": 1692789208 + }, + { + "status": 0, + "executed": 1692789508 + } + ], + "issued": 1692789508, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/2.904 ingressOctets=1048,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789508, + "occurrences": 12299, + "occurrences_watermark": 12299, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-2.904", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b7e08f36-639e-4120-b028-02f5d0946c8c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789508 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/3 1592", + "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, + "duration": 0.481658693, + "executed": 1692789648, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784541 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785743 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786645 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787546 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789648 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789648, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c2dcfc9d-3a0b-493f-bee7-ac41b6ab0fe4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/4 1593", + "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, + "duration": 0.480400135, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783637 + }, + { + "status": 0, + "executed": 1692783937 + }, + { + "status": 0, + "executed": 1692784237 + }, + { + "status": 0, + "executed": 1692784537 + }, + { + "status": 0, + "executed": 1692784838 + }, + { + "status": 0, + "executed": 1692785138 + }, + { + "status": 0, + "executed": 1692785438 + }, + { + "status": 0, + "executed": 1692785739 + }, + { + "status": 0, + "executed": 1692786039 + }, + { + "status": 0, + "executed": 1692786339 + }, + { + "status": 0, + "executed": 1692786640 + }, + { + "status": 0, + "executed": 1692786940 + }, + { + "status": 0, + "executed": 1692787240 + }, + { + "status": 0, + "executed": 1692787540 + }, + { + "status": 0, + "executed": 1692787841 + }, + { + "status": 0, + "executed": 1692788141 + }, + { + "status": 0, + "executed": 1692788442 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789343 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 12298, + "occurrences_watermark": 12298, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "434d4063-76a2-408a-830d-1452e7a8c93d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/5 1594", + "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, + "duration": 0.519536822, + "executed": 1692789647, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784542 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785743 + }, + { + "status": 0, + "executed": 1692786045 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786644 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787546 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789647 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789647, + "occurrences": 12299, + "occurrences_watermark": 12299, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "501b661e-cfa6-4b71-9f7e-084ec54a5e42", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/6 1595", + "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, + "duration": 0.505707482, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784850 + }, + { + "status": 0, + "executed": 1692785149 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 12297, + "occurrences_watermark": 12297, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e40d01a0-b7ff-4d25-a968-51c5dba42508", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.lon2.uk.geant.net xe-2/3/7 1596", + "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, + "duration": 0.484044559, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.lon2.uk.geant.net,interface_name=xe-2/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 12282, + "occurrences_watermark": 12282, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.lon2.uk.geant.net-xe-2-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.lon2.uk.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.lon2.uk.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b9723791-0cc0-4bcf-9416-0805e5570d0a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 724754", + "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, + "duration": 0.385850877, + "executed": 1692789479, + "history": [ + { + "status": 1, + "executed": 1692783473 + }, + { + "status": 1, + "executed": 1692783773 + }, + { + "status": 1, + "executed": 1692784076 + }, + { + "status": 1, + "executed": 1692784375 + }, + { + "status": 1, + "executed": 1692784675 + }, + { + "status": 1, + "executed": 1692784975 + }, + { + "status": 1, + "executed": 1692785276 + }, + { + "status": 1, + "executed": 1692785576 + }, + { + "status": 1, + "executed": 1692785876 + }, + { + "status": 1, + "executed": 1692786177 + }, + { + "status": 1, + "executed": 1692786477 + }, + { + "status": 1, + "executed": 1692786777 + }, + { + "status": 1, + "executed": 1692787077 + }, + { + "status": 1, + "executed": 1692787378 + }, + { + "status": 1, + "executed": 1692787678 + }, + { + "status": 1, + "executed": 1692787979 + }, + { + "status": 1, + "executed": 1692788279 + }, + { + "status": 1, + "executed": 1692788579 + }, + { + "status": 1, + "executed": 1692788879 + }, + { + "status": 1, + "executed": 1692789179 + }, + { + "status": 1, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "error matching snmp output: JUNIPER-SMI::jnxMibs.6.2.1.5.1167.1.6.100.119.115.45.105.110 = No Such Instance currently exists at this OID\ndscp32_counters,service_id=724754,hostname=mx1.mad.es.geant.net,interface_name=ae18.333 egressOctets=176905557641872\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 430, + "occurrences_watermark": 13860, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-ES_ARN_AP1_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "000fb8bf-97fd-4bd0-a1db-97dd25b68932", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789479 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.mad.es.geant.net", + "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, + "duration": 7.245644006, + "executed": 1692789419, + "history": [ + { + "status": 1, + "executed": 1692783415 + }, + { + "status": 1, + "executed": 1692783715 + }, + { + "status": 1, + "executed": 1692784015 + }, + { + "status": 1, + "executed": 1692784315 + }, + { + "status": 1, + "executed": 1692784616 + }, + { + "status": 1, + "executed": 1692784916 + }, + { + "status": 1, + "executed": 1692785216 + }, + { + "status": 1, + "executed": 1692785516 + }, + { + "status": 1, + "executed": 1692785816 + }, + { + "status": 1, + "executed": 1692786116 + }, + { + "status": 1, + "executed": 1692786417 + }, + { + "status": 1, + "executed": 1692786717 + }, + { + "status": 1, + "executed": 1692787017 + }, + { + "status": 1, + "executed": 1692787318 + }, + { + "status": 1, + "executed": 1692787618 + }, + { + "status": 1, + "executed": 1692787918 + }, + { + "status": 1, + "executed": 1692788218 + }, + { + "status": 1, + "executed": 1692788518 + }, + { + "status": 1, + "executed": 1692788819 + }, + { + "status": 1, + "executed": 1692789119 + }, + { + "status": 1, + "executed": 1692789419 + } + ], + "issued": 1692789419, + "output": "2023-08-23 11:17:00,263 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:00,263 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:00,263 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:00,263 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.mad.es.geant.net\n2023-08-23 11:17:00,292 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:00,313 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.mad.es.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.mad.es.geant.net,subscription=232.223.222.1 octets=391106532844\n2023-08-23 11:17:06,976 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.2,232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.8,232.223.222.9,232.223.222.10,232.223.222.11,232.223.222.12,232.223.222.13,232.223.222.14,232.223.222.15,232.223.222.16,232.223.222.17,232.223.222.18,232.223.222.19,232.223.222.20,232.223.222.21,232.223.222.22,232.223.222.23,232.223.222.24,232.223.222.25,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.29,232.223.222.30,232.223.222.31,232.223.222.32,232.223.222.33,232.223.222.34,232.223.222.35,232.223.222.36,232.223.222.37,232.223.222.38,232.223.222.39,232.223.222.40,232.223.222.41,232.223.222.42,232.223.222.43,232.223.222.44,232.223.222.45,232.223.222.46,232.223.222.47,232.223.222.48,232.223.222.49,232.223.222.50,232.223.222.51,232.223.222.52,232.223.222.53,232.223.222.54,232.223.222.55,232.223.222.56,232.223.222.57,232.223.222.58,232.223.222.59,232.223.222.60,232.223.222.61,232.223.222.62,232.223.222.63,232.223.222.64,232.223.222.65,232.223.222.66,232.223.222.67,232.223.222.68,232.223.222.69,232.223.222.70,232.223.222.71,232.223.222.72,232.223.223.1,232.223.223.22\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34835, + "occurrences_watermark": 34835, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.mad.es.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d5d02b3d-be98-4f44-84f9-7afde4c05fe5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789427 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae14 652", + "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, + "duration": 0.650771972, + "executed": 1692789654, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785151 + }, + { + "status": 0, + "executed": 1692785451 + }, + { + "status": 0, + "executed": 1692785751 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786352 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786952 + }, + { + "status": 0, + "executed": 1692787252 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787853 + }, + { + "status": 0, + "executed": 1692788153 + }, + { + "status": 0, + "executed": 1692788453 + }, + { + "status": 0, + "executed": 1692788753 + }, + { + "status": 0, + "executed": 1692789054 + }, + { + "status": 0, + "executed": 1692789354 + }, + { + "status": 0, + "executed": 1692789654 + } + ], + "issued": 1692789654, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae14 ingressOctets=27410728090404003,egressOctets=6587291798261557,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789654, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae14", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a51334cf-3479-4090-99dd-15226bc44156", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789655 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae14.100 1106", + "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, + "duration": 0.647566106, + "executed": 1692789668, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786666 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789668 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae14.100 ingressOctets=27410734057918279,egressOctets=6587293449196819,ingressErrors=0,egressErrors=0,ingressOctetsv6=550487954274288,egressOctetsv6=26284693848159,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789668, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae14.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5efd6f0f-cad3-4b3f-b184-0ab027a6f31a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae15 653", + "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, + "duration": 0.67289639, + "executed": 1692789640, + "history": [ + { + "status": 0, + "executed": 1692783635 + }, + { + "status": 0, + "executed": 1692783935 + }, + { + "status": 0, + "executed": 1692784235 + }, + { + "status": 0, + "executed": 1692784535 + }, + { + "status": 0, + "executed": 1692784836 + }, + { + "status": 0, + "executed": 1692785136 + }, + { + "status": 0, + "executed": 1692785436 + }, + { + "status": 0, + "executed": 1692785737 + }, + { + "status": 0, + "executed": 1692786037 + }, + { + "status": 0, + "executed": 1692786337 + }, + { + "status": 0, + "executed": 1692786638 + }, + { + "status": 0, + "executed": 1692786937 + }, + { + "status": 0, + "executed": 1692787237 + }, + { + "status": 0, + "executed": 1692787538 + }, + { + "status": 0, + "executed": 1692787838 + }, + { + "status": 0, + "executed": 1692788138 + }, + { + "status": 0, + "executed": 1692788439 + }, + { + "status": 0, + "executed": 1692788739 + }, + { + "status": 0, + "executed": 1692789039 + }, + { + "status": 0, + "executed": 1692789340 + }, + { + "status": 0, + "executed": 1692789640 + } + ], + "issued": 1692789639, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae15 ingressOctets=8086326661,egressOctets=271305597,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789640, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae15", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2775eb63-b273-4526-a6d8-ffa681f2a2c5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789640 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae15.668 821", + "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, + "duration": 0.698448452, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789559, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae15.668 ingressOctets=8086326014,egressOctets=271342202,ingressErrors=0,egressErrors=0,ingressOctetsv6=145512080,egressOctetsv6=11054,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae15.668", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e975e0a7-8e86-4137-84bf-59d1919f0ad7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16 654", + "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, + "duration": 0.759557755, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16 ingressOctets=50935489472132811,egressOctets=87856290832766680,ingressErrors=0,egressErrors=2,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dcb23e92-523a-4f1a-8fd0-0e956418d237", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.111 1060", + "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, + "duration": 0.567454335, + "executed": 1692789644, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784841 + }, + { + "status": 0, + "executed": 1692785141 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785741 + }, + { + "status": 0, + "executed": 1692786042 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787843 + }, + { + "status": 0, + "executed": 1692788143 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789044 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789644 + } + ], + "issued": 1692789644, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.111 ingressOctets=15343842257602832,egressOctets=18500008165186590,ingressErrors=0,egressErrors=0,ingressOctetsv6=11606644012990872,egressOctetsv6=12728533179925430,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789644, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1214966c-5390-411c-a7f2-e3c0fbdf2677", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.186 1062", + "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, + "duration": 0.635963988, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.186 ingressOctets=389369020,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.186", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "44498271-cdda-46dc-88b0-cd2a4d37d439", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.187 1064", + "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, + "duration": 0.654490601, + "executed": 1692789662, + "history": [ + { + "status": 0, + "executed": 1692783658 + }, + { + "status": 0, + "executed": 1692783958 + }, + { + "status": 0, + "executed": 1692784258 + }, + { + "status": 0, + "executed": 1692784559 + }, + { + "status": 0, + "executed": 1692784859 + }, + { + "status": 0, + "executed": 1692785159 + }, + { + "status": 0, + "executed": 1692785459 + }, + { + "status": 0, + "executed": 1692785759 + }, + { + "status": 0, + "executed": 1692786059 + }, + { + "status": 0, + "executed": 1692786360 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786960 + }, + { + "status": 0, + "executed": 1692787260 + }, + { + "status": 0, + "executed": 1692787560 + }, + { + "status": 0, + "executed": 1692787861 + }, + { + "status": 0, + "executed": 1692788161 + }, + { + "status": 0, + "executed": 1692788461 + }, + { + "status": 0, + "executed": 1692788761 + }, + { + "status": 0, + "executed": 1692789062 + }, + { + "status": 0, + "executed": 1692789362 + }, + { + "status": 0, + "executed": 1692789662 + } + ], + "issued": 1692789662, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.187 ingressOctets=389369020,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789662, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.187", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "822e9db1-e918-4b37-9ffe-4a0d3c5e989e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.188 1066", + "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, + "duration": 0.67370123, + "executed": 1692789629, + "history": [ + { + "status": 0, + "executed": 1692783626 + }, + { + "status": 0, + "executed": 1692783926 + }, + { + "status": 0, + "executed": 1692784226 + }, + { + "status": 0, + "executed": 1692784526 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786627 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789629 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.188 ingressOctets=389369020,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789629, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.188", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e3bd2433-8e90-4d8f-a84f-3eda8a209eb9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.189 1068", + "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, + "duration": 0.627591169, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783668 + }, + { + "status": 0, + "executed": 1692783968 + }, + { + "status": 0, + "executed": 1692784268 + }, + { + "status": 0, + "executed": 1692784569 + }, + { + "status": 0, + "executed": 1692784869 + }, + { + "status": 0, + "executed": 1692785169 + }, + { + "status": 0, + "executed": 1692785469 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786370 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786970 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787571 + }, + { + "status": 0, + "executed": 1692787871 + }, + { + "status": 0, + "executed": 1692788171 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789072 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789672, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.189 ingressOctets=389369088,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.189", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7d16e768-46a5-41f6-85f7-e3259c71f0c4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789673 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.190 1070", + "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, + "duration": 0.613759048, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785440 + }, + { + "status": 0, + "executed": 1692785740 + }, + { + "status": 0, + "executed": 1692786041 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787842 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.190 ingressOctets=389369088,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.190", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6911aaaa-da95-4798-9401-315cd5ed4fa7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.191 721", + "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, + "duration": 0.63824235, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785440 + }, + { + "status": 0, + "executed": 1692785740 + }, + { + "status": 0, + "executed": 1692786041 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787842 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.191 ingressOctets=285710434,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 16658, + "occurrences_watermark": 16658, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.191", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2d508acc-4303-4f8e-bdb2-af16502b2735", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.196 1072", + "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, + "duration": 0.607407546, + "executed": 1692789711, + "history": [ + { + "status": 0, + "executed": 1692783707 + }, + { + "status": 0, + "executed": 1692784008 + }, + { + "status": 0, + "executed": 1692784308 + }, + { + "status": 0, + "executed": 1692784608 + }, + { + "status": 0, + "executed": 1692784908 + }, + { + "status": 0, + "executed": 1692785208 + }, + { + "status": 0, + "executed": 1692785508 + }, + { + "status": 0, + "executed": 1692785809 + }, + { + "status": 0, + "executed": 1692786109 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786710 + }, + { + "status": 0, + "executed": 1692787010 + }, + { + "status": 0, + "executed": 1692787310 + }, + { + "status": 0, + "executed": 1692787610 + }, + { + "status": 0, + "executed": 1692787910 + }, + { + "status": 0, + "executed": 1692788211 + }, + { + "status": 0, + "executed": 1692788511 + }, + { + "status": 0, + "executed": 1692788811 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789711 + } + ], + "issued": 1692789711, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.196 ingressOctets=783539792,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789711, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.196", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b0b6b91d-dbce-41b6-abc5-498e150d257e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789712 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.197 1074", + "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, + "duration": 0.659054175, + "executed": 1692789624, + "history": [ + { + "status": 0, + "executed": 1692783620 + }, + { + "status": 0, + "executed": 1692783920 + }, + { + "status": 0, + "executed": 1692784220 + }, + { + "status": 0, + "executed": 1692784520 + }, + { + "status": 0, + "executed": 1692784820 + }, + { + "status": 0, + "executed": 1692785120 + }, + { + "status": 0, + "executed": 1692785420 + }, + { + "status": 0, + "executed": 1692785721 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786622 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788423 + }, + { + "status": 0, + "executed": 1692788723 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789324 + }, + { + "status": 0, + "executed": 1692789624 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.197 ingressOctets=783831648,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789624, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.197", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e4f983b1-1d22-48d1-ae17-d11c364cae14", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789624 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.2000 1128", + "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, + "duration": 0.665813236, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783523 + }, + { + "status": 0, + "executed": 1692783824 + }, + { + "status": 0, + "executed": 1692784124 + }, + { + "status": 0, + "executed": 1692784424 + }, + { + "status": 0, + "executed": 1692784724 + }, + { + "status": 0, + "executed": 1692785024 + }, + { + "status": 0, + "executed": 1692785324 + }, + { + "status": 0, + "executed": 1692785625 + }, + { + "status": 0, + "executed": 1692785925 + }, + { + "status": 0, + "executed": 1692786226 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786826 + }, + { + "status": 0, + "executed": 1692787126 + }, + { + "status": 0, + "executed": 1692787426 + }, + { + "status": 0, + "executed": 1692787727 + }, + { + "status": 0, + "executed": 1692788027 + }, + { + "status": 0, + "executed": 1692788327 + }, + { + "status": 0, + "executed": 1692788627 + }, + { + "status": 0, + "executed": 1692788928 + }, + { + "status": 0, + "executed": 1692789228 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789527, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.2000 ingressOctets=88341210,egressOctets=135979000,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.2000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c7e44df7-e34b-43f4-bf44-0965f195cd3d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.201 642", + "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, + "duration": 0.620866835, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784851 + }, + { + "status": 0, + "executed": 1692785150 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.201 ingressOctets=44144,egressOctets=117919410,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.201", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "712954d1-cb23-4249-8edf-f0e56f474c15", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.251 859", + "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, + "duration": 0.622025039, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787535 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.251 ingressOctets=25823124414404089,egressOctets=31403533320038185,ingressErrors=0,egressErrors=0,ingressOctetsv6=10578146337198606,egressOctetsv6=7123521290175912,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.251", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9f1e4ad8-927d-4076-ac47-240ab09110e9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.252 860", + "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, + "duration": 0.709793693, + "executed": 1692789683, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786382 + }, + { + "status": 0, + "executed": 1692786682 + }, + { + "status": 0, + "executed": 1692786982 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788483 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789683 + } + ], + "issued": 1692789683, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.252 ingressOctets=9503251340545300,egressOctets=37960276446696485,ingressErrors=0,egressErrors=0,ingressOctetsv6=8103820457037,egressOctetsv6=270785822202717,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789683, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.252", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b8811b60-211a-4ef2-a465-483460652611", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789684 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.409 1091", + "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, + "duration": 0.645715178, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784555 + }, + { + "status": 0, + "executed": 1692784855 + }, + { + "status": 0, + "executed": 1692785155 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786356 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.409 ingressOctets=9910061214908,egressOctets=572229666373,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.409", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "61aef73f-ed33-4754-a519-59d01df65173", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.412 1085", + "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, + "duration": 0.635572301, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789705, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.412 ingressOctets=3536227826,egressOctets=4770078753,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 34819, + "occurrences_watermark": 34819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.412", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1291202c-deca-4920-8c3a-2211b92327d1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789706 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.415 1079", + "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, + "duration": 0.601850494, + "executed": 1692789681, + "history": [ + { + "status": 0, + "executed": 1692783678 + }, + { + "status": 0, + "executed": 1692783978 + }, + { + "status": 0, + "executed": 1692784278 + }, + { + "status": 0, + "executed": 1692784579 + }, + { + "status": 0, + "executed": 1692784879 + }, + { + "status": 0, + "executed": 1692785179 + }, + { + "status": 0, + "executed": 1692785479 + }, + { + "status": 0, + "executed": 1692785779 + }, + { + "status": 0, + "executed": 1692786079 + }, + { + "status": 0, + "executed": 1692786380 + }, + { + "status": 0, + "executed": 1692786680 + }, + { + "status": 0, + "executed": 1692786980 + }, + { + "status": 0, + "executed": 1692787280 + }, + { + "status": 0, + "executed": 1692787580 + }, + { + "status": 0, + "executed": 1692787880 + }, + { + "status": 0, + "executed": 1692788180 + }, + { + "status": 0, + "executed": 1692788481 + }, + { + "status": 0, + "executed": 1692788781 + }, + { + "status": 0, + "executed": 1692789081 + }, + { + "status": 0, + "executed": 1692789381 + }, + { + "status": 0, + "executed": 1692789681 + } + ], + "issued": 1692789681, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.415 ingressOctets=8398771682055,egressOctets=1717764906392,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789681, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.415", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fa05da05-8b97-4472-bfd8-5375adbe945c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789682 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.682 1081", + "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, + "duration": 0.925519905, + "executed": 1692789618, + "history": [ + { + "status": 0, + "executed": 1692783613 + }, + { + "status": 0, + "executed": 1692783913 + }, + { + "status": 0, + "executed": 1692784213 + }, + { + "status": 0, + "executed": 1692784513 + }, + { + "status": 0, + "executed": 1692784814 + }, + { + "status": 0, + "executed": 1692785114 + }, + { + "status": 0, + "executed": 1692785414 + }, + { + "status": 0, + "executed": 1692785714 + }, + { + "status": 0, + "executed": 1692786014 + }, + { + "status": 0, + "executed": 1692786315 + }, + { + "status": 0, + "executed": 1692786615 + }, + { + "status": 0, + "executed": 1692786915 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787516 + }, + { + "status": 0, + "executed": 1692787816 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788417 + }, + { + "status": 0, + "executed": 1692788717 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789318 + }, + { + "status": 0, + "executed": 1692789618 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.682 ingressOctets=1858792548,egressOctets=292890407,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789618, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.682", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c3b033a3-3ed0-4410-9687-739724ec16cc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789619 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.87 1055", + "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, + "duration": 0.677549686, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784518 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786020 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789324 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.87 ingressOctets=643699671,egressOctets=1374338835,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.87", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eece2b0e-e36f-4749-965c-74a83c17a49d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789624 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.930 1083", + "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, + "duration": 0.555878415, + "executed": 1692789712, + "history": [ + { + "status": 0, + "executed": 1692783709 + }, + { + "status": 0, + "executed": 1692784009 + }, + { + "status": 0, + "executed": 1692784309 + }, + { + "status": 0, + "executed": 1692784609 + }, + { + "status": 0, + "executed": 1692784909 + }, + { + "status": 0, + "executed": 1692785209 + }, + { + "status": 0, + "executed": 1692785509 + }, + { + "status": 0, + "executed": 1692785810 + }, + { + "status": 0, + "executed": 1692786110 + }, + { + "status": 0, + "executed": 1692786411 + }, + { + "status": 0, + "executed": 1692786711 + }, + { + "status": 0, + "executed": 1692787011 + }, + { + "status": 0, + "executed": 1692787311 + }, + { + "status": 0, + "executed": 1692787611 + }, + { + "status": 0, + "executed": 1692787911 + }, + { + "status": 0, + "executed": 1692788212 + }, + { + "status": 0, + "executed": 1692788512 + }, + { + "status": 0, + "executed": 1692788812 + }, + { + "status": 0, + "executed": 1692789112 + }, + { + "status": 0, + "executed": 1692789412 + }, + { + "status": 0, + "executed": 1692789712 + } + ], + "issued": 1692789712, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.930 ingressOctets=95233178153413,egressOctets=11928439743247,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789712, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.930", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a549ba80-d1f3-4088-ab2b-22ffd42c3d7a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789713 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.931 1087", + "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, + "duration": 0.619008434, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.931 ingressOctets=4622958749030,egressOctets=65004045768,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 34826, + "occurrences_watermark": 34826, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.931", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3c3d3e9e-911f-4a19-80fd-a8bff4e13d7d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae16.947 1121", + "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, + "duration": 0.663248547, + "executed": 1692789647, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784542 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785743 + }, + { + "status": 0, + "executed": 1692786045 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786644 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787545 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789647 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae16.947 ingressOctets=135302323695013,egressOctets=161994130041,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789647, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae16.947", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0ba6f57f-439e-4e78-8a7a-d7d690600ee1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae18 656", + "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, + "duration": 0.567832659, + "executed": 1692789564, + "history": [ + { + "status": 0, + "executed": 1692783559 + }, + { + "status": 0, + "executed": 1692783859 + }, + { + "status": 0, + "executed": 1692784159 + }, + { + "status": 0, + "executed": 1692784460 + }, + { + "status": 0, + "executed": 1692784760 + }, + { + "status": 0, + "executed": 1692785060 + }, + { + "status": 0, + "executed": 1692785360 + }, + { + "status": 0, + "executed": 1692785660 + }, + { + "status": 0, + "executed": 1692785960 + }, + { + "status": 0, + "executed": 1692786261 + }, + { + "status": 0, + "executed": 1692786562 + }, + { + "status": 0, + "executed": 1692786862 + }, + { + "status": 0, + "executed": 1692787162 + }, + { + "status": 0, + "executed": 1692787462 + }, + { + "status": 0, + "executed": 1692787763 + }, + { + "status": 0, + "executed": 1692788063 + }, + { + "status": 0, + "executed": 1692788363 + }, + { + "status": 0, + "executed": 1692788664 + }, + { + "status": 0, + "executed": 1692788964 + }, + { + "status": 0, + "executed": 1692789264 + }, + { + "status": 0, + "executed": 1692789564 + } + ], + "issued": 1692789564, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae18 ingressOctets=341360981448826,egressOctets=1171665840586862,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789564, + "occurrences": 18349, + "occurrences_watermark": 18349, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae18", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b5578d06-770a-4704-986c-2c3fabed5a4b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789565 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae18.100 1166", + "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, + "duration": 0.675844294, + "executed": 1692789700, + "history": [ + { + "status": 0, + "executed": 1692783697 + }, + { + "status": 0, + "executed": 1692783997 + }, + { + "status": 0, + "executed": 1692784297 + }, + { + "status": 0, + "executed": 1692784598 + }, + { + "status": 0, + "executed": 1692784898 + }, + { + "status": 0, + "executed": 1692785198 + }, + { + "status": 0, + "executed": 1692785498 + }, + { + "status": 0, + "executed": 1692785798 + }, + { + "status": 0, + "executed": 1692786099 + }, + { + "status": 0, + "executed": 1692786399 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692786999 + }, + { + "status": 0, + "executed": 1692787299 + }, + { + "status": 0, + "executed": 1692787599 + }, + { + "status": 0, + "executed": 1692787899 + }, + { + "status": 0, + "executed": 1692788200 + }, + { + "status": 0, + "executed": 1692788500 + }, + { + "status": 0, + "executed": 1692788800 + }, + { + "status": 0, + "executed": 1692789100 + }, + { + "status": 0, + "executed": 1692789400 + }, + { + "status": 0, + "executed": 1692789700 + } + ], + "issued": 1692789700, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae18.100 ingressOctets=2579576080218,egressOctets=6946588214839,ingressErrors=0,egressErrors=0,ingressOctetsv6=969273330,egressOctetsv6=2334357340,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789700, + "occurrences": 34826, + "occurrences_watermark": 34826, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae18.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "abbe8e8a-91fc-4d9c-b16b-08fdb2fa64aa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789700 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae18.333 1167", + "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, + "duration": 0.612157319, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae18.333 ingressOctets=338781535251043,egressOctets=1164719416892735,ingressErrors=0,egressErrors=0,ingressOctetsv6=81470118939,egressOctetsv6=207715995755,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae18.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a1da9ff5-57d7-475d-adcd-075c8d14989d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae3 617", + "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, + "duration": 0.618848129, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae3 ingressOctets=945865789095,egressOctets=14026751289,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d2465480-bd4e-4a1e-8ae2-d5997517bd7d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae3.103 747", + "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, + "duration": 0.631176699, + "executed": 1692789656, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785153 + }, + { + "status": 0, + "executed": 1692785453 + }, + { + "status": 0, + "executed": 1692785753 + }, + { + "status": 0, + "executed": 1692786054 + }, + { + "status": 0, + "executed": 1692786354 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786954 + }, + { + "status": 0, + "executed": 1692787254 + }, + { + "status": 0, + "executed": 1692787555 + }, + { + "status": 0, + "executed": 1692787855 + }, + { + "status": 0, + "executed": 1692788155 + }, + { + "status": 0, + "executed": 1692788456 + }, + { + "status": 0, + "executed": 1692788756 + }, + { + "status": 0, + "executed": 1692789056 + }, + { + "status": 0, + "executed": 1692789356 + }, + { + "status": 0, + "executed": 1692789656 + } + ], + "issued": 1692789656, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae3.103 ingressOctets=933977059186,egressOctets=9829080424,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789656, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae3.103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "955ac2ee-7571-4627-a0fa-46bcf3c7961a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789657 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae3.998 748", + "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, + "duration": 0.602110141, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae3.998 ingressOctets=8421880657,egressOctets=3509898574,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae3.998", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f5ba118c-ea1a-42e8-87e0-e9d4e7dce5a8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae4 618", + "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, + "duration": 0.641313356, + "executed": 1692789695, + "history": [ + { + "status": 0, + "executed": 1692783692 + }, + { + "status": 0, + "executed": 1692783993 + }, + { + "status": 0, + "executed": 1692784293 + }, + { + "status": 0, + "executed": 1692784593 + }, + { + "status": 0, + "executed": 1692784893 + }, + { + "status": 0, + "executed": 1692785193 + }, + { + "status": 0, + "executed": 1692785493 + }, + { + "status": 0, + "executed": 1692785794 + }, + { + "status": 0, + "executed": 1692786094 + }, + { + "status": 0, + "executed": 1692786395 + }, + { + "status": 0, + "executed": 1692786694 + }, + { + "status": 0, + "executed": 1692786994 + }, + { + "status": 0, + "executed": 1692787295 + }, + { + "status": 0, + "executed": 1692787595 + }, + { + "status": 0, + "executed": 1692787895 + }, + { + "status": 0, + "executed": 1692788195 + }, + { + "status": 0, + "executed": 1692788495 + }, + { + "status": 0, + "executed": 1692788796 + }, + { + "status": 0, + "executed": 1692789096 + }, + { + "status": 0, + "executed": 1692789396 + }, + { + "status": 0, + "executed": 1692789695 + } + ], + "issued": 1692789695, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae4 ingressOctets=11049301517911986,egressOctets=28905723745056040,ingressErrors=20,egressErrors=74,ingressDiscards=0,egressDiscards=194626\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789695, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8415fe2f-d741-4d8c-897d-8aa66d5a86ad", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789696 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae4.0 1160", + "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, + "duration": 0.621465348, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784555 + }, + { + "status": 0, + "executed": 1692784855 + }, + { + "status": 0, + "executed": 1692785155 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786356 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae4.0 ingressOctets=11049288982926755,egressOctets=28905687588557211,ingressErrors=0,egressErrors=0,ingressOctetsv6=654497969000680,egressOctetsv6=583821363855928,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7d41d7b4-d004-46b9-8611-af1cac8c8a22", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae5 619", + "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, + "duration": 0.672335584, + "executed": 1692789444, + "history": [ + { + "status": 0, + "executed": 1692783439 + }, + { + "status": 0, + "executed": 1692783739 + }, + { + "status": 0, + "executed": 1692784039 + }, + { + "status": 0, + "executed": 1692784339 + }, + { + "status": 0, + "executed": 1692784640 + }, + { + "status": 0, + "executed": 1692784940 + }, + { + "status": 0, + "executed": 1692785241 + }, + { + "status": 0, + "executed": 1692785541 + }, + { + "status": 0, + "executed": 1692785841 + }, + { + "status": 0, + "executed": 1692786142 + }, + { + "status": 0, + "executed": 1692786442 + }, + { + "status": 0, + "executed": 1692786742 + }, + { + "status": 0, + "executed": 1692787042 + }, + { + "status": 0, + "executed": 1692787343 + }, + { + "status": 0, + "executed": 1692787643 + }, + { + "status": 0, + "executed": 1692787943 + }, + { + "status": 0, + "executed": 1692788243 + }, + { + "status": 0, + "executed": 1692788543 + }, + { + "status": 0, + "executed": 1692788844 + }, + { + "status": 0, + "executed": 1692789144 + }, + { + "status": 0, + "executed": 1692789444 + } + ], + "issued": 1692789444, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae5 ingressOctets=87471527637867306,egressOctets=52965805076625707,ingressErrors=431,egressErrors=169,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789444, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9db75000-ab3d-44ce-b9a7-714168dcfcbd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789444 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae5.0 855", + "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, + "duration": 0.608641158, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783491 + }, + { + "status": 0, + "executed": 1692783791 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784992 + }, + { + "status": 0, + "executed": 1692785292 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786193 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae5.0 ingressOctets=87471690779335698,egressOctets=52965975662356523,ingressErrors=0,egressErrors=0,ingressOctetsv6=7416963588684841,egressOctetsv6=5302292375692416,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 24550, + "occurrences_watermark": 24550, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "47c249d5-fd48-4edb-9b66-675fa909f729", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae6 620", + "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, + "duration": 0.647468222, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae6 ingressOctets=50995457748,egressOctets=52818321391,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6ebcceeb-5517-4d16-930f-00df52e07a66", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ae6.0 1134", + "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, + "duration": 0.641402203, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ae6.0 ingressOctets=50407331788,egressOctets=52227977998,ingressErrors=0,egressErrors=0,ingressOctetsv6=1627293122,egressOctetsv6=904501246,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ae6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e8ff03cf-86a0-4c50-9309-6f59f46e06f8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net dsc.0 779", + "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, + "duration": 0.594794382, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=dsc.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-dsc.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1e0f5822-2af8-418c-9adc-41effd8865b5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-10/0/2 1046", + "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, + "duration": 0.650073807, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-10/0/2 ingressOctets=25418320586,egressOctets=25347004508,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-10-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9c5df3d6-2ce1-43a2-bec4-eaeae9f3b159", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-10/0/5 1045", + "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, + "duration": 0.619819602, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-10/0/5 ingressOctets=25577172546,egressOctets=27471433387,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-10-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "981e9970-525f-46aa-83d3-ca10b50a8e0a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-10/1/2 1047", + "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, + "duration": 0.677674258, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789577, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-10/1/2 ingressOctets=27455825319830702,egressOctets=6598860323976343,ingressErrors=24968,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-10-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8520c4a0-4358-45a0-9593-6ba1ea2bce8e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-10/1/5 1048", + "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, + "duration": 0.628416919, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786302 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-10/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-10-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "60d5c916-1095-4182-aa23-3263f6c87a1a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-4/0/0 977", + "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, + "duration": 0.670109826, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-4/0/0 ingressOctets=5765448930358374,egressOctets=6603312434827390,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-4-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5b639d04-c921-4b0a-8f3c-e71bba904b70", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-8/0/2 1140", + "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, + "duration": 0.661699002, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789102 + }, + { + "status": 0, + "executed": 1692789402 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-8/0/2 ingressOctets=5525415294398423,egressOctets=14453682848150550,ingressErrors=12,egressErrors=39,ingressDiscards=0,egressDiscards=37923\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-8-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4049476d-32ab-4d4d-9ddb-a1cc32d87f40", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789702 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-8/0/5 1141", + "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, + "duration": 0.666364123, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-8/0/5 ingressOctets=5523877685514640,egressOctets=14452012236769984,ingressErrors=8,egressErrors=35,ingressDiscards=0,egressDiscards=156703\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-8-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a0791918-00ea-4c64-a6bc-ec69fa6dacd9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-8/1/2 1142", + "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, + "duration": 0.617809927, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786378 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-8/1/2 ingressOctets=22739130357304236,egressOctets=40627391485303325,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-8-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "76ae5312-0a07-4ff5-965a-4f9dff23a692", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-8/1/5 1143", + "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, + "duration": 0.610808599, + "executed": 1692789613, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784809 + }, + { + "status": 0, + "executed": 1692785109 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789613 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-8/1/5 ingressOctets=22430963626902751,egressOctets=40625632772186824,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789613, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-8-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0530ec08-f7c9-433b-8983-472a59300b4a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-9/0/2 1138", + "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, + "duration": 0.603566201, + "executed": 1692789699, + "history": [ + { + "status": 0, + "executed": 1692783696 + }, + { + "status": 0, + "executed": 1692783996 + }, + { + "status": 0, + "executed": 1692784296 + }, + { + "status": 0, + "executed": 1692784597 + }, + { + "status": 0, + "executed": 1692784897 + }, + { + "status": 0, + "executed": 1692785197 + }, + { + "status": 0, + "executed": 1692785497 + }, + { + "status": 0, + "executed": 1692785797 + }, + { + "status": 0, + "executed": 1692786097 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786698 + }, + { + "status": 0, + "executed": 1692786998 + }, + { + "status": 0, + "executed": 1692787298 + }, + { + "status": 0, + "executed": 1692787598 + }, + { + "status": 0, + "executed": 1692787898 + }, + { + "status": 0, + "executed": 1692788198 + }, + { + "status": 0, + "executed": 1692788499 + }, + { + "status": 0, + "executed": 1692788799 + }, + { + "status": 0, + "executed": 1692789099 + }, + { + "status": 0, + "executed": 1692789399 + }, + { + "status": 0, + "executed": 1692789699 + } + ], + "issued": 1692789699, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-9/0/2 ingressOctets=29158855365994574,egressOctets=17656007243160435,ingressErrors=200,egressErrors=54,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789699, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-9-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bdde043d-3f8a-404e-825b-47f2bc1cf0ae", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789700 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-9/0/5 1139", + "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, + "duration": 0.631618661, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-9/0/5 ingressOctets=29159105783339617,egressOctets=17654774753939830,ingressErrors=152,egressErrors=55,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-9-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d63ffb4a-070e-42d7-8629-6b42986d69f4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-9/1/2 1144", + "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, + "duration": 0.627914659, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-9/1/2 ingressOctets=29154406733360464,egressOctets=17655851480244295,ingressErrors=79,egressErrors=60,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 18350, + "occurrences_watermark": 18350, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-9-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f4b6e190-2f32-4d16-9bb6-cd6a2607db94", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net et-9/1/5 1145", + "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, + "duration": 0.710453317, + "executed": 1692789641, + "history": [ + { + "status": 0, + "executed": 1692783637 + }, + { + "status": 0, + "executed": 1692783937 + }, + { + "status": 0, + "executed": 1692784237 + }, + { + "status": 0, + "executed": 1692784537 + }, + { + "status": 0, + "executed": 1692784838 + }, + { + "status": 0, + "executed": 1692785138 + }, + { + "status": 0, + "executed": 1692785438 + }, + { + "status": 0, + "executed": 1692785738 + }, + { + "status": 0, + "executed": 1692786038 + }, + { + "status": 0, + "executed": 1692786339 + }, + { + "status": 0, + "executed": 1692786639 + }, + { + "status": 0, + "executed": 1692786939 + }, + { + "status": 0, + "executed": 1692787239 + }, + { + "status": 0, + "executed": 1692787539 + }, + { + "status": 0, + "executed": 1692787840 + }, + { + "status": 0, + "executed": 1692788140 + }, + { + "status": 0, + "executed": 1692788440 + }, + { + "status": 0, + "executed": 1692788742 + }, + { + "status": 0, + "executed": 1692789041 + }, + { + "status": 0, + "executed": 1692789341 + }, + { + "status": 0, + "executed": 1692789641 + } + ], + "issued": 1692789641, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=et-9/1/5 ingressOctets=8086326740,egressOctets=271492331,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789641, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-et-9-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "757db32e-24f3-4e0d-859b-773e1d5e73ee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789642 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/1 593", + "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, + "duration": 0.728445102, + "executed": 1692789705, + "history": [ + { + "status": 0, + "executed": 1692783701 + }, + { + "status": 0, + "executed": 1692784001 + }, + { + "status": 0, + "executed": 1692784301 + }, + { + "status": 0, + "executed": 1692784602 + }, + { + "status": 0, + "executed": 1692784902 + }, + { + "status": 0, + "executed": 1692785202 + }, + { + "status": 0, + "executed": 1692785502 + }, + { + "status": 0, + "executed": 1692785802 + }, + { + "status": 0, + "executed": 1692786102 + }, + { + "status": 0, + "executed": 1692786403 + }, + { + "status": 0, + "executed": 1692786703 + }, + { + "status": 0, + "executed": 1692787003 + }, + { + "status": 0, + "executed": 1692787303 + }, + { + "status": 0, + "executed": 1692787603 + }, + { + "status": 0, + "executed": 1692787904 + }, + { + "status": 0, + "executed": 1692788204 + }, + { + "status": 0, + "executed": 1692788504 + }, + { + "status": 0, + "executed": 1692788805 + }, + { + "status": 0, + "executed": 1692789105 + }, + { + "status": 0, + "executed": 1692789405 + }, + { + "status": 0, + "executed": 1692789705 + } + ], + "issued": 1692789704, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789705, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7ef2103b-a14b-4de6-8b8f-28b0a45b6822", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789706 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/2 594", + "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, + "duration": 0.617904473, + "executed": 1692789668, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786666 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789668 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789668, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c8ed3591-4ae6-4f99-86c2-14e0924826ea", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/3 595", + "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, + "duration": 0.635488276, + "executed": 1692789530, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785326 + }, + { + "status": 0, + "executed": 1692785627 + }, + { + "status": 0, + "executed": 1692785927 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786528 + }, + { + "status": 0, + "executed": 1692786828 + }, + { + "status": 0, + "executed": 1692787128 + }, + { + "status": 0, + "executed": 1692787428 + }, + { + "status": 0, + "executed": 1692787729 + }, + { + "status": 0, + "executed": 1692788029 + }, + { + "status": 0, + "executed": 1692788329 + }, + { + "status": 0, + "executed": 1692788629 + }, + { + "status": 0, + "executed": 1692788930 + }, + { + "status": 0, + "executed": 1692789230 + }, + { + "status": 0, + "executed": 1692789530 + } + ], + "issued": 1692789529, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789530, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f53a9ca2-996c-4ddb-8601-250532c35a26", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/4 596", + "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, + "duration": 0.571895301, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783663 + }, + { + "status": 0, + "executed": 1692783963 + }, + { + "status": 0, + "executed": 1692784263 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785764 + }, + { + "status": 0, + "executed": 1692786064 + }, + { + "status": 0, + "executed": 1692786364 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787265 + }, + { + "status": 0, + "executed": 1692787565 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788466 + }, + { + "status": 0, + "executed": 1692788766 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789367 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "57cadbdc-183f-4acd-a24b-e70fd7eb1611", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/5 597", + "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, + "duration": 0.736725223, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783990 + }, + { + "status": 0, + "executed": 1692784290 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786092 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786692 + }, + { + "status": 0, + "executed": 1692786992 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "790ba5eb-4879-4e74-a587-10144959e555", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789695 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/6 598", + "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, + "duration": 0.569327801, + "executed": 1692789677, + "history": [ + { + "status": 0, + "executed": 1692783673 + }, + { + "status": 0, + "executed": 1692783973 + }, + { + "status": 0, + "executed": 1692784273 + }, + { + "status": 0, + "executed": 1692784573 + }, + { + "status": 0, + "executed": 1692784873 + }, + { + "status": 0, + "executed": 1692785173 + }, + { + "status": 0, + "executed": 1692785473 + }, + { + "status": 0, + "executed": 1692785774 + }, + { + "status": 0, + "executed": 1692786074 + }, + { + "status": 0, + "executed": 1692786374 + }, + { + "status": 0, + "executed": 1692786675 + }, + { + "status": 0, + "executed": 1692786974 + }, + { + "status": 0, + "executed": 1692787275 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788176 + }, + { + "status": 0, + "executed": 1692788476 + }, + { + "status": 0, + "executed": 1692788776 + }, + { + "status": 0, + "executed": 1692789077 + }, + { + "status": 0, + "executed": 1692789377 + }, + { + "status": 0, + "executed": 1692789677 + } + ], + "issued": 1692789677, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789677, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a6685c3c-0fbf-47f1-8c3d-8478325cb177", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789678 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/7 599", + "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, + "duration": 0.677946625, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "380e6e12-147e-43ba-a7ca-bf8a647061a6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/8 600", + "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, + "duration": 0.704858557, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785784 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786384 + }, + { + "status": 0, + "executed": 1692786685 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787285 + }, + { + "status": 0, + "executed": 1692787585 + }, + { + "status": 0, + "executed": 1692787885 + }, + { + "status": 0, + "executed": 1692788185 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788786 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789686, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dfe1b154-a5a2-4ee3-9349-5f273a7d65b4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789688 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/2/9 601", + "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, + "duration": 0.595766398, + "executed": 1692789688, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783985 + }, + { + "status": 0, + "executed": 1692784285 + }, + { + "status": 0, + "executed": 1692784586 + }, + { + "status": 0, + "executed": 1692784886 + }, + { + "status": 0, + "executed": 1692785186 + }, + { + "status": 0, + "executed": 1692785486 + }, + { + "status": 0, + "executed": 1692785786 + }, + { + "status": 0, + "executed": 1692786087 + }, + { + "status": 0, + "executed": 1692786386 + }, + { + "status": 0, + "executed": 1692786687 + }, + { + "status": 0, + "executed": 1692786987 + }, + { + "status": 0, + "executed": 1692787287 + }, + { + "status": 0, + "executed": 1692787587 + }, + { + "status": 0, + "executed": 1692787887 + }, + { + "status": 0, + "executed": 1692788187 + }, + { + "status": 0, + "executed": 1692788488 + }, + { + "status": 0, + "executed": 1692788788 + }, + { + "status": 0, + "executed": 1692789088 + }, + { + "status": 0, + "executed": 1692789388 + }, + { + "status": 0, + "executed": 1692789688 + } + ], + "issued": 1692789688, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789688, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7a9fd48d-cdf6-4db5-bd77-eb5b3ff1a37d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789689 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/1 603", + "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, + "duration": 0.778659277, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "24f150a8-7708-40f7-b077-a0d1d311dd57", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789695 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/2 604", + "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, + "duration": 0.663254771, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783558 + }, + { + "status": 0, + "executed": 1692783858 + }, + { + "status": 0, + "executed": 1692784158 + }, + { + "status": 0, + "executed": 1692784458 + }, + { + "status": 0, + "executed": 1692784758 + }, + { + "status": 0, + "executed": 1692785059 + }, + { + "status": 0, + "executed": 1692785359 + }, + { + "status": 0, + "executed": 1692785659 + }, + { + "status": 0, + "executed": 1692785959 + }, + { + "status": 0, + "executed": 1692786260 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786860 + }, + { + "status": 0, + "executed": 1692787160 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787761 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788662 + }, + { + "status": 0, + "executed": 1692788962 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789562, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "16fadc04-e83b-40db-a812-161cc4072495", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789563 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/3 605", + "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, + "duration": 0.872650408, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a9d90d84-2338-47fc-9202-a80f412352cc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/4 606", + "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, + "duration": 0.632822981, + "executed": 1692789562, + "history": [ + { + "status": 0, + "executed": 1692783557 + }, + { + "status": 0, + "executed": 1692783858 + }, + { + "status": 0, + "executed": 1692784158 + }, + { + "status": 0, + "executed": 1692784458 + }, + { + "status": 0, + "executed": 1692784758 + }, + { + "status": 0, + "executed": 1692785058 + }, + { + "status": 0, + "executed": 1692785358 + }, + { + "status": 0, + "executed": 1692785658 + }, + { + "status": 0, + "executed": 1692785958 + }, + { + "status": 0, + "executed": 1692786259 + }, + { + "status": 0, + "executed": 1692786559 + }, + { + "status": 0, + "executed": 1692786859 + }, + { + "status": 0, + "executed": 1692787159 + }, + { + "status": 0, + "executed": 1692787460 + }, + { + "status": 0, + "executed": 1692787760 + }, + { + "status": 0, + "executed": 1692788061 + }, + { + "status": 0, + "executed": 1692788361 + }, + { + "status": 0, + "executed": 1692788661 + }, + { + "status": 0, + "executed": 1692788961 + }, + { + "status": 0, + "executed": 1692789262 + }, + { + "status": 0, + "executed": 1692789562 + } + ], + "issued": 1692789561, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789562, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "733e01bf-9fb5-46ec-b669-10f4e47537f9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789563 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/5 607", + "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, + "duration": 0.632670543, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fb1f7556-a774-4632-a3c3-94cc99ec070f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/6 608", + "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, + "duration": 0.63216596, + "executed": 1692789699, + "history": [ + { + "status": 0, + "executed": 1692783696 + }, + { + "status": 0, + "executed": 1692783996 + }, + { + "status": 0, + "executed": 1692784296 + }, + { + "status": 0, + "executed": 1692784597 + }, + { + "status": 0, + "executed": 1692784897 + }, + { + "status": 0, + "executed": 1692785197 + }, + { + "status": 0, + "executed": 1692785497 + }, + { + "status": 0, + "executed": 1692785797 + }, + { + "status": 0, + "executed": 1692786097 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786698 + }, + { + "status": 0, + "executed": 1692786998 + }, + { + "status": 0, + "executed": 1692787298 + }, + { + "status": 0, + "executed": 1692787598 + }, + { + "status": 0, + "executed": 1692787898 + }, + { + "status": 0, + "executed": 1692788198 + }, + { + "status": 0, + "executed": 1692788499 + }, + { + "status": 0, + "executed": 1692788799 + }, + { + "status": 0, + "executed": 1692789099 + }, + { + "status": 0, + "executed": 1692789399 + }, + { + "status": 0, + "executed": 1692789699 + } + ], + "issued": 1692789699, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789699, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "133ebedb-2adf-4f2c-a2fc-dd6769c7a935", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789700 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/7 609", + "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, + "duration": 0.586458533, + "executed": 1692789714, + "history": [ + { + "status": 0, + "executed": 1692783711 + }, + { + "status": 0, + "executed": 1692784011 + }, + { + "status": 0, + "executed": 1692784311 + }, + { + "status": 0, + "executed": 1692784611 + }, + { + "status": 0, + "executed": 1692784911 + }, + { + "status": 0, + "executed": 1692785211 + }, + { + "status": 0, + "executed": 1692785511 + }, + { + "status": 0, + "executed": 1692785812 + }, + { + "status": 0, + "executed": 1692786112 + }, + { + "status": 0, + "executed": 1692786413 + }, + { + "status": 0, + "executed": 1692786713 + }, + { + "status": 0, + "executed": 1692787013 + }, + { + "status": 0, + "executed": 1692787313 + }, + { + "status": 0, + "executed": 1692787613 + }, + { + "status": 0, + "executed": 1692787913 + }, + { + "status": 0, + "executed": 1692788214 + }, + { + "status": 0, + "executed": 1692788514 + }, + { + "status": 0, + "executed": 1692788814 + }, + { + "status": 0, + "executed": 1692789114 + }, + { + "status": 0, + "executed": 1692789414 + }, + { + "status": 0, + "executed": 1692789714 + } + ], + "issued": 1692789714, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789714, + "occurrences": 34826, + "occurrences_watermark": 34826, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "975cc580-829c-4e58-be03-f5071742116f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789714 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net ge-0/3/8 610", + "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, + "duration": 0.616354371, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783533 + }, + { + "status": 0, + "executed": 1692783833 + }, + { + "status": 0, + "executed": 1692784133 + }, + { + "status": 0, + "executed": 1692784433 + }, + { + "status": 0, + "executed": 1692784733 + }, + { + "status": 0, + "executed": 1692785034 + }, + { + "status": 0, + "executed": 1692785334 + }, + { + "status": 0, + "executed": 1692785634 + }, + { + "status": 0, + "executed": 1692785934 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786835 + }, + { + "status": 0, + "executed": 1692787135 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787736 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788937 + }, + { + "status": 0, + "executed": 1692789237 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=ge-0/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 34819, + "occurrences_watermark": 34819, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-ge-0-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e69b8294-4b7a-4fdc-8f7d-99910fc25bee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net lt-0/0/0 693", + "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, + "duration": 0.665192845, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=lt-0/0/0 ingressOctets=3150727282792,egressOctets=3155569740367,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-lt-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "840c0a64-21a2-4d32-b9af-f882e27abb8e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net lt-0/0/0.12 1125", + "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, + "duration": 0.570877533, + "executed": 1692789599, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785995 + }, + { + "status": 0, + "executed": 1692786295 + }, + { + "status": 0, + "executed": 1692786596 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789599 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=lt-0/0/0.12 ingressOctets=105212383,egressOctets=575239026,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789599, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-lt-0-0-0.12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6d2c2198-5605-4864-80b0-1ea7a8939a69", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net lt-0/0/0.13 1120", + "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, + "duration": 0.63036665, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786591 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=lt-0/0/0.13 ingressOctets=308640925,egressOctets=1126791144,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 34817, + "occurrences_watermark": 34817, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-lt-0-0-0.13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fa10d508-898a-4432-a66e-c4777eaf6dce", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net lt-0/0/0.16 901", + "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, + "duration": 0.60891017, + "executed": 1692789596, + "history": [ + { + "status": 0, + "executed": 1692783592 + }, + { + "status": 0, + "executed": 1692783892 + }, + { + "status": 0, + "executed": 1692784192 + }, + { + "status": 0, + "executed": 1692784492 + }, + { + "status": 0, + "executed": 1692784792 + }, + { + "status": 0, + "executed": 1692785092 + }, + { + "status": 0, + "executed": 1692785392 + }, + { + "status": 0, + "executed": 1692785692 + }, + { + "status": 0, + "executed": 1692785992 + }, + { + "status": 0, + "executed": 1692786293 + }, + { + "status": 0, + "executed": 1692786593 + }, + { + "status": 0, + "executed": 1692786893 + }, + { + "status": 0, + "executed": 1692787194 + }, + { + "status": 0, + "executed": 1692787494 + }, + { + "status": 0, + "executed": 1692787794 + }, + { + "status": 0, + "executed": 1692788095 + }, + { + "status": 0, + "executed": 1692788395 + }, + { + "status": 0, + "executed": 1692788695 + }, + { + "status": 0, + "executed": 1692788995 + }, + { + "status": 0, + "executed": 1692789296 + }, + { + "status": 0, + "executed": 1692789596 + } + ], + "issued": 1692789596, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=lt-0/0/0.16 ingressOctets=1422944485,egressOctets=3151813163152,ingressErrors=0,egressErrors=0,ingressOctetsv6=571824,egressOctetsv6=43851158034,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789596, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-lt-0-0-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cceedba1-6f52-4924-aaf4-d62116eecc0b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789597 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net lt-0/0/0.21 1123", + "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, + "duration": 0.637084113, + "executed": 1692789685, + "history": [ + { + "status": 0, + "executed": 1692783682 + }, + { + "status": 0, + "executed": 1692783982 + }, + { + "status": 0, + "executed": 1692784282 + }, + { + "status": 0, + "executed": 1692784583 + }, + { + "status": 0, + "executed": 1692784883 + }, + { + "status": 0, + "executed": 1692785183 + }, + { + "status": 0, + "executed": 1692785483 + }, + { + "status": 0, + "executed": 1692785783 + }, + { + "status": 0, + "executed": 1692786083 + }, + { + "status": 0, + "executed": 1692786384 + }, + { + "status": 0, + "executed": 1692786684 + }, + { + "status": 0, + "executed": 1692786984 + }, + { + "status": 0, + "executed": 1692787284 + }, + { + "status": 0, + "executed": 1692787584 + }, + { + "status": 0, + "executed": 1692787884 + }, + { + "status": 0, + "executed": 1692788184 + }, + { + "status": 0, + "executed": 1692788485 + }, + { + "status": 0, + "executed": 1692788785 + }, + { + "status": 0, + "executed": 1692789085 + }, + { + "status": 0, + "executed": 1692789385 + }, + { + "status": 0, + "executed": 1692789685 + } + ], + "issued": 1692789685, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=lt-0/0/0.21 ingressOctets=544695713,egressOctets=135572984,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789685, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-lt-0-0-0.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0a54eaaf-1112-48c9-9160-6d81c3eed1eb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789686 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net lt-0/0/0.31 1124", + "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, + "duration": 0.670296373, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=lt-0/0/0.31 ingressOctets=1082840494,egressOctets=398246082,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-lt-0-0-0.31", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bb170a09-9281-471a-9f41-61665160a4c9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net lt-0/0/0.61 902", + "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, + "duration": 0.573173272, + "executed": 1692789707, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786406 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788206 + }, + { + "status": 0, + "executed": 1692788506 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789107 + }, + { + "status": 0, + "executed": 1692789407 + }, + { + "status": 0, + "executed": 1692789707 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=lt-0/0/0.61 ingressOctets=3147262659754,egressOctets=1423872716,ingressErrors=0,egressErrors=0,ingressOctetsv6=87729553450,egressOctetsv6=895411393,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789707, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-lt-0-0-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8515fb24-8274-4131-93c6-55299a592f44", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/0 726", + "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, + "duration": 0.626777547, + "executed": 1692789721, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786420 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789721 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=so-1/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789721, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-so-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "71c24606-cd30-404a-aa7e-67f587fb3a24", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/1 727", + "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, + "duration": 0.635490503, + "executed": 1692789711, + "history": [ + { + "status": 0, + "executed": 1692783707 + }, + { + "status": 0, + "executed": 1692784008 + }, + { + "status": 0, + "executed": 1692784308 + }, + { + "status": 0, + "executed": 1692784608 + }, + { + "status": 0, + "executed": 1692784908 + }, + { + "status": 0, + "executed": 1692785208 + }, + { + "status": 0, + "executed": 1692785508 + }, + { + "status": 0, + "executed": 1692785809 + }, + { + "status": 0, + "executed": 1692786109 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786710 + }, + { + "status": 0, + "executed": 1692787010 + }, + { + "status": 0, + "executed": 1692787310 + }, + { + "status": 0, + "executed": 1692787610 + }, + { + "status": 0, + "executed": 1692787910 + }, + { + "status": 0, + "executed": 1692788211 + }, + { + "status": 0, + "executed": 1692788511 + }, + { + "status": 0, + "executed": 1692788811 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789711 + } + ], + "issued": 1692789711, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=so-1/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789711, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-so-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "98d04fbd-651d-4364-88f5-92e529d2f571", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789712 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/2 728", + "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, + "duration": 0.631885393, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=so-1/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-so-1-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8dca133f-0403-41df-a222-c1d21e048057", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/3 729", + "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, + "duration": 0.651963761, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785697 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=so-1/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-so-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9ede5055-fc24-447f-9f6e-ad281f7365ea", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/4 730", + "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, + "duration": 0.640923857, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=so-1/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-so-1-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "65e60f78-6d01-43bb-8c83-9e7e0f38d259", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/5 731", + "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, + "duration": 0.641729988, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=so-1/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-so-1-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "de862b2c-2cf3-4b5d-930b-cb1154e9ad09", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/6 732", + "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, + "duration": 0.629411433, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=so-1/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-so-1-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8960e6da-f4b2-46bf-b4b7-7f6fbe3d7851", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net so-1/2/7 733", + "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, + "duration": 0.608843033, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=so-1/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 34826, + "occurrences_watermark": 34826, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-so-1-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1b003bca-352f-4526-a554-c499ea6b3fb5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789723 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-0/0/0 588", + "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, + "duration": 0.617851767, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-0/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "933dc17c-af88-4d8a-957c-b87a0cb4644f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-0/0/1 589", + "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, + "duration": 0.608789002, + "executed": 1692789611, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787209 + }, + { + "status": 0, + "executed": 1692787509 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788110 + }, + { + "status": 0, + "executed": 1692788410 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789311 + }, + { + "status": 0, + "executed": 1692789611 + } + ], + "issued": 1692789611, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-0/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789611, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8598c3d0-c70a-4388-aaa6-814ff61087a9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789612 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-0/1/0 590", + "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, + "duration": 0.647285794, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-0/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 34826, + "occurrences_watermark": 34826, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6b6519bf-f8fa-47b5-92fe-5b477f06449e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789601 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-0/1/1 591", + "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, + "duration": 0.639634041, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784443 + }, + { + "status": 0, + "executed": 1692784743 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786544 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787445 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788046 + }, + { + "status": 0, + "executed": 1692788346 + }, + { + "status": 0, + "executed": 1692788646 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-0/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6df2d37b-90ac-4363-a635-a0eb45c5b58e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-1/0/0 526", + "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, + "duration": 0.634393455, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-1/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "33c7ef1d-137e-432b-a3e6-f357f672082c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-1/0/1 527", + "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, + "duration": 0.692854858, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-1/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "01540493-4b27-4b90-880b-f66153e26b1a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-1/1/0 528", + "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, + "duration": 0.65207723, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-1/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7332bcdd-2331-4f56-9900-c714da9d89d9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789612 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-1/1/1 529", + "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, + "duration": 0.616521161, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-1/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 34828, + "occurrences_watermark": 34828, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-1-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ed4708fe-2fdb-4ba9-973f-9555dd2b3cf6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/0/0 572", + "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, + "duration": 0.63696429, + "executed": 1692789511, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784107 + }, + { + "status": 0, + "executed": 1692784407 + }, + { + "status": 0, + "executed": 1692784707 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785608 + }, + { + "status": 0, + "executed": 1692785908 + }, + { + "status": 0, + "executed": 1692786209 + }, + { + "status": 0, + "executed": 1692786509 + }, + { + "status": 0, + "executed": 1692786809 + }, + { + "status": 0, + "executed": 1692787109 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787710 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788911 + }, + { + "status": 0, + "executed": 1692789211 + }, + { + "status": 0, + "executed": 1692789511 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789511, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2eddff5c-3ac9-4a96-8dac-c05cb2e6948e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789511 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/0/1 573", + "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, + "duration": 0.620778768, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/0/1 ingressOctets=210289464,egressOctets=248324552,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a572edee-b7e0-404c-bb59-322ace01b838", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/0/2 574", + "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, + "duration": 0.586510274, + "executed": 1692789495, + "history": [ + { + "status": 0, + "executed": 1692783490 + }, + { + "status": 0, + "executed": 1692783790 + }, + { + "status": 0, + "executed": 1692784091 + }, + { + "status": 0, + "executed": 1692784391 + }, + { + "status": 0, + "executed": 1692784691 + }, + { + "status": 0, + "executed": 1692784991 + }, + { + "status": 0, + "executed": 1692785291 + }, + { + "status": 0, + "executed": 1692785592 + }, + { + "status": 0, + "executed": 1692785892 + }, + { + "status": 0, + "executed": 1692786192 + }, + { + "status": 0, + "executed": 1692786493 + }, + { + "status": 0, + "executed": 1692786793 + }, + { + "status": 0, + "executed": 1692787093 + }, + { + "status": 0, + "executed": 1692787393 + }, + { + "status": 0, + "executed": 1692787694 + }, + { + "status": 0, + "executed": 1692787994 + }, + { + "status": 0, + "executed": 1692788294 + }, + { + "status": 0, + "executed": 1692788594 + }, + { + "status": 0, + "executed": 1692788895 + }, + { + "status": 0, + "executed": 1692789195 + }, + { + "status": 0, + "executed": 1692789495 + } + ], + "issued": 1692789494, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/0/2 ingressOctets=539515523872,egressOctets=12718751575,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789495, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "be71375d-8a7b-423b-89fc-701d6c7787f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/0/3 575", + "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, + "duration": 0.586789976, + "executed": 1692789650, + "history": [ + { + "status": 0, + "executed": 1692783646 + }, + { + "status": 0, + "executed": 1692783946 + }, + { + "status": 0, + "executed": 1692784246 + }, + { + "status": 0, + "executed": 1692784546 + }, + { + "status": 0, + "executed": 1692784846 + }, + { + "status": 0, + "executed": 1692785146 + }, + { + "status": 0, + "executed": 1692785447 + }, + { + "status": 0, + "executed": 1692785747 + }, + { + "status": 0, + "executed": 1692786047 + }, + { + "status": 0, + "executed": 1692786347 + }, + { + "status": 0, + "executed": 1692786648 + }, + { + "status": 0, + "executed": 1692786948 + }, + { + "status": 0, + "executed": 1692787248 + }, + { + "status": 0, + "executed": 1692787548 + }, + { + "status": 0, + "executed": 1692787849 + }, + { + "status": 0, + "executed": 1692788149 + }, + { + "status": 0, + "executed": 1692788449 + }, + { + "status": 0, + "executed": 1692788749 + }, + { + "status": 0, + "executed": 1692789050 + }, + { + "status": 0, + "executed": 1692789350 + }, + { + "status": 0, + "executed": 1692789650 + } + ], + "issued": 1692789650, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789650, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ea91c1ae-9bc3-46ec-9fe2-a969af6d8ef6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789651 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/1/0 576", + "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, + "duration": 0.62301896, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783623 + }, + { + "status": 0, + "executed": 1692783923 + }, + { + "status": 0, + "executed": 1692784223 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785424 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786025 + }, + { + "status": 0, + "executed": 1692786325 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f3c517b0-b88f-4447-8caf-ad02169f42cc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/1/1 577", + "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, + "duration": 0.608139399, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784617 + }, + { + "status": 0, + "executed": 1692784917 + }, + { + "status": 0, + "executed": 1692785217 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787319 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d571388e-386c-423f-9c9d-6f44c59aa2cd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/1/2 578", + "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, + "duration": 0.652886732, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "614edcb4-a689-4376-acfd-8acbb45e8428", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/1/3 579", + "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, + "duration": 0.570892939, + "executed": 1692789540, + "history": [ + { + "status": 0, + "executed": 1692783536 + }, + { + "status": 0, + "executed": 1692783837 + }, + { + "status": 0, + "executed": 1692784137 + }, + { + "status": 0, + "executed": 1692784437 + }, + { + "status": 0, + "executed": 1692784737 + }, + { + "status": 0, + "executed": 1692785037 + }, + { + "status": 0, + "executed": 1692785337 + }, + { + "status": 0, + "executed": 1692785637 + }, + { + "status": 0, + "executed": 1692785937 + }, + { + "status": 0, + "executed": 1692786237 + }, + { + "status": 0, + "executed": 1692786538 + }, + { + "status": 0, + "executed": 1692786838 + }, + { + "status": 0, + "executed": 1692787138 + }, + { + "status": 0, + "executed": 1692787439 + }, + { + "status": 0, + "executed": 1692787739 + }, + { + "status": 0, + "executed": 1692788040 + }, + { + "status": 0, + "executed": 1692788340 + }, + { + "status": 0, + "executed": 1692788640 + }, + { + "status": 0, + "executed": 1692788940 + }, + { + "status": 0, + "executed": 1692789240 + }, + { + "status": 0, + "executed": 1692789540 + } + ], + "issued": 1692789540, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/1/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789540, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "72fafe17-9470-4672-ac94-34a8ce329f36", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789541 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/2/0 580", + "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, + "duration": 0.58199424, + "executed": 1692789535, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784132 + }, + { + "status": 0, + "executed": 1692784432 + }, + { + "status": 0, + "executed": 1692784732 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786533 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787434 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788035 + }, + { + "status": 0, + "executed": 1692788335 + }, + { + "status": 0, + "executed": 1692788635 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789535 + } + ], + "issued": 1692789535, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789535, + "occurrences": 34827, + "occurrences_watermark": 34827, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bc20f9f9-4979-4fc2-aef5-3ad23b8a593e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789536 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/2/1 581", + "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, + "duration": 0.604755149, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783548 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785049 + }, + { + "status": 0, + "executed": 1692785349 + }, + { + "status": 0, + "executed": 1692785649 + }, + { + "status": 0, + "executed": 1692785949 + }, + { + "status": 0, + "executed": 1692786249 + }, + { + "status": 0, + "executed": 1692786550 + }, + { + "status": 0, + "executed": 1692786850 + }, + { + "status": 0, + "executed": 1692787150 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787751 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eb74573c-9301-4054-b80b-dc78dbee67e6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/2/2 582", + "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, + "duration": 0.584937138, + "executed": 1692789506, + "history": [ + { + "status": 0, + "executed": 1692783502 + }, + { + "status": 0, + "executed": 1692783802 + }, + { + "status": 0, + "executed": 1692784103 + }, + { + "status": 0, + "executed": 1692784403 + }, + { + "status": 0, + "executed": 1692784703 + }, + { + "status": 0, + "executed": 1692785003 + }, + { + "status": 0, + "executed": 1692785303 + }, + { + "status": 0, + "executed": 1692785603 + }, + { + "status": 0, + "executed": 1692785903 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786504 + }, + { + "status": 0, + "executed": 1692786804 + }, + { + "status": 0, + "executed": 1692787104 + }, + { + "status": 0, + "executed": 1692787405 + }, + { + "status": 0, + "executed": 1692787705 + }, + { + "status": 0, + "executed": 1692788006 + }, + { + "status": 0, + "executed": 1692788306 + }, + { + "status": 0, + "executed": 1692788606 + }, + { + "status": 0, + "executed": 1692788906 + }, + { + "status": 0, + "executed": 1692789206 + }, + { + "status": 0, + "executed": 1692789506 + } + ], + "issued": 1692789506, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789506, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2d6a309a-e072-4e23-ac9a-263f55c07ab2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789507 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/2/3 583", + "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, + "duration": 0.624765749, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "25632e88-7d15-43ff-8903-208977c4413a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/3/0 584", + "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, + "duration": 0.632370719, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783844 + }, + { + "status": 0, + "executed": 1692784144 + }, + { + "status": 0, + "executed": 1692784444 + }, + { + "status": 0, + "executed": 1692784744 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785944 + }, + { + "status": 0, + "executed": 1692786245 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787446 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788047 + }, + { + "status": 0, + "executed": 1692788347 + }, + { + "status": 0, + "executed": 1692788647 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "361e55f0-3772-4bc7-a723-30eef7e0095f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/3/1 585", + "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, + "duration": 0.810005372, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6c22a019-dc49-48b6-aec1-d5d71d312ea3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/3/2 586", + "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, + "duration": 0.82267877, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 34828, + "occurrences_watermark": 34828, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "35c3a03d-fae7-4bdd-8d2f-b31070533d58", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-2/3/3 587", + "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, + "duration": 0.687879417, + "executed": 1692789648, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784542 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785743 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786645 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787546 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789648 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-2/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789648, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-2-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e66bcb9f-bae0-48dc-9e34-71f0bf9364c3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-3/0/0 767", + "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, + "duration": 0.598717729, + "executed": 1692789652, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784848 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786049 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788150 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789652 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-3/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789652, + "occurrences": 34826, + "occurrences_watermark": 34826, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bc85229d-3eab-4128-a209-3a1db29a4d9a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-3/0/1 768", + "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, + "duration": 0.624153635, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786034 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786635 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787535 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-3/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 24555, + "occurrences_watermark": 24555, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-3-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "75d74d6e-cbb0-4511-92c3-9deaf8524cc6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789638 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-3/1/0 769", + "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, + "duration": 0.61508338, + "executed": 1692789654, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785150 + }, + { + "status": 0, + "executed": 1692785451 + }, + { + "status": 0, + "executed": 1692785751 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786952 + }, + { + "status": 0, + "executed": 1692787252 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787853 + }, + { + "status": 0, + "executed": 1692788153 + }, + { + "status": 0, + "executed": 1692788453 + }, + { + "status": 0, + "executed": 1692788753 + }, + { + "status": 0, + "executed": 1692789054 + }, + { + "status": 0, + "executed": 1692789354 + }, + { + "status": 0, + "executed": 1692789654 + } + ], + "issued": 1692789654, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-3/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789654, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-3-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "47d9478f-3354-48ff-9237-5d71a6d4ce2e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789655 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-3/1/1 770", + "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, + "duration": 0.633633541, + "executed": 1692789545, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789545 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-3/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789545, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-3-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dc50506d-9a91-4181-885e-557a109b42c2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "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, + "duration": 0.636847645, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "95e1af5d-6dea-4bd5-924c-971d5be53f02", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789601 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/1 778", + "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, + "duration": 0.602480267, + "executed": 1692789432, + "history": [ + { + "status": 0, + "executed": 1692783426 + }, + { + "status": 0, + "executed": 1692783726 + }, + { + "status": 0, + "executed": 1692784026 + }, + { + "status": 0, + "executed": 1692784326 + }, + { + "status": 0, + "executed": 1692784627 + }, + { + "status": 0, + "executed": 1692784927 + }, + { + "status": 0, + "executed": 1692785227 + }, + { + "status": 0, + "executed": 1692785527 + }, + { + "status": 0, + "executed": 1692785827 + }, + { + "status": 0, + "executed": 1692786128 + }, + { + "status": 0, + "executed": 1692786428 + }, + { + "status": 0, + "executed": 1692786728 + }, + { + "status": 0, + "executed": 1692787028 + }, + { + "status": 0, + "executed": 1692787329 + }, + { + "status": 0, + "executed": 1692787629 + }, + { + "status": 0, + "executed": 1692787929 + }, + { + "status": 0, + "executed": 1692788229 + }, + { + "status": 0, + "executed": 1692788529 + }, + { + "status": 0, + "executed": 1692788830 + }, + { + "status": 0, + "executed": 1692789132 + }, + { + "status": 0, + "executed": 1692789432 + } + ], + "issued": 1692789432, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/0/1 ingressOctets=0,egressOctets=7864350,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789432, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3c951ff5-0fe3-41be-897a-749f6e796310", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/2 788", + "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, + "duration": 0.645575321, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786061 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786661 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/0/2 ingressOctets=129080167572411,egressOctets=8880253668368,ingressErrors=20,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e13ef016-67b5-410a-b6db-2c20e9096639", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/3 789", + "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, + "duration": 0.616956331, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783845 + }, + { + "status": 0, + "executed": 1692784145 + }, + { + "status": 0, + "executed": 1692784445 + }, + { + "status": 0, + "executed": 1692784745 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786245 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787447 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788048 + }, + { + "status": 0, + "executed": 1692788348 + }, + { + "status": 0, + "executed": 1692788648 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/0/3 ingressOctets=127502651214823,egressOctets=7277874854981,ingressErrors=24,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2ced6a39-dcaf-45a6-8625-23d590bf6e54", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/5 791", + "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, + "duration": 0.596714709, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783549 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785050 + }, + { + "status": 0, + "executed": 1692785350 + }, + { + "status": 0, + "executed": 1692785650 + }, + { + "status": 0, + "executed": 1692785950 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786550 + }, + { + "status": 0, + "executed": 1692786851 + }, + { + "status": 0, + "executed": 1692787151 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787752 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/0/5 ingressOctets=124162413582020,egressOctets=6894495191364,ingressErrors=15,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bd652f22-229e-4f4b-b3de-cefe1384df7b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/6 794", + "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, + "duration": 0.579086742, + "executed": 1692789511, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784107 + }, + { + "status": 0, + "executed": 1692784407 + }, + { + "status": 0, + "executed": 1692784707 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785608 + }, + { + "status": 0, + "executed": 1692785908 + }, + { + "status": 0, + "executed": 1692786209 + }, + { + "status": 0, + "executed": 1692786509 + }, + { + "status": 0, + "executed": 1692786809 + }, + { + "status": 0, + "executed": 1692787109 + }, + { + "status": 0, + "executed": 1692787410 + }, + { + "status": 0, + "executed": 1692787710 + }, + { + "status": 0, + "executed": 1692788011 + }, + { + "status": 0, + "executed": 1692788311 + }, + { + "status": 0, + "executed": 1692788611 + }, + { + "status": 0, + "executed": 1692788911 + }, + { + "status": 0, + "executed": 1692789211 + }, + { + "status": 0, + "executed": 1692789511 + } + ], + "issued": 1692789511, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/0/6 ingressOctets=341360644259784,egressOctets=1171665149439798,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789511, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "06bedaf7-62e3-4877-bf16-a514aa27aa48", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789511 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/0/7 795", + "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, + "duration": 0.60218066, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/0/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "edf4e8c7-4f90-4583-9e93-ff18c11d884b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/0 806", + "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, + "duration": 0.693578831, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6da5edd5-a2c2-4894-8a2d-e6458ce709c7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/1 807", + "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, + "duration": 0.637899138, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "263c79f1-87b9-415d-a2db-fad80a22c98e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/2 808", + "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, + "duration": 0.58676315, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783668 + }, + { + "status": 0, + "executed": 1692783968 + }, + { + "status": 0, + "executed": 1692784268 + }, + { + "status": 0, + "executed": 1692784569 + }, + { + "status": 0, + "executed": 1692784869 + }, + { + "status": 0, + "executed": 1692785169 + }, + { + "status": 0, + "executed": 1692785469 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786970 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787571 + }, + { + "status": 0, + "executed": 1692787871 + }, + { + "status": 0, + "executed": 1692788171 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789072 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789672, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "72c59a20-4e91-4dcc-bf0e-fb1effc330b1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789673 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/3 809", + "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, + "duration": 0.597011179, + "executed": 1692789665, + "history": [ + { + "status": 0, + "executed": 1692783661 + }, + { + "status": 0, + "executed": 1692783961 + }, + { + "status": 0, + "executed": 1692784261 + }, + { + "status": 0, + "executed": 1692784561 + }, + { + "status": 0, + "executed": 1692784861 + }, + { + "status": 0, + "executed": 1692785161 + }, + { + "status": 0, + "executed": 1692785461 + }, + { + "status": 0, + "executed": 1692785762 + }, + { + "status": 0, + "executed": 1692786062 + }, + { + "status": 0, + "executed": 1692786362 + }, + { + "status": 0, + "executed": 1692786663 + }, + { + "status": 0, + "executed": 1692786962 + }, + { + "status": 0, + "executed": 1692787263 + }, + { + "status": 0, + "executed": 1692787563 + }, + { + "status": 0, + "executed": 1692787863 + }, + { + "status": 0, + "executed": 1692788163 + }, + { + "status": 0, + "executed": 1692788464 + }, + { + "status": 0, + "executed": 1692788764 + }, + { + "status": 0, + "executed": 1692789064 + }, + { + "status": 0, + "executed": 1692789365 + }, + { + "status": 0, + "executed": 1692789665 + } + ], + "issued": 1692789664, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/1/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789665, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "21b85486-7a91-4808-ab83-6a75f684c463", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789665 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/4 810", + "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, + "duration": 0.628194265, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/1/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6b0faf64-5f6d-4903-9336-063eee6caeef", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/5 811", + "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, + "duration": 0.616929006, + "executed": 1692789696, + "history": [ + { + "status": 0, + "executed": 1692783693 + }, + { + "status": 0, + "executed": 1692783993 + }, + { + "status": 0, + "executed": 1692784293 + }, + { + "status": 0, + "executed": 1692784594 + }, + { + "status": 0, + "executed": 1692784894 + }, + { + "status": 0, + "executed": 1692785194 + }, + { + "status": 0, + "executed": 1692785494 + }, + { + "status": 0, + "executed": 1692785794 + }, + { + "status": 0, + "executed": 1692786094 + }, + { + "status": 0, + "executed": 1692786395 + }, + { + "status": 0, + "executed": 1692786695 + }, + { + "status": 0, + "executed": 1692786995 + }, + { + "status": 0, + "executed": 1692787295 + }, + { + "status": 0, + "executed": 1692787595 + }, + { + "status": 0, + "executed": 1692787895 + }, + { + "status": 0, + "executed": 1692788195 + }, + { + "status": 0, + "executed": 1692788496 + }, + { + "status": 0, + "executed": 1692788796 + }, + { + "status": 0, + "executed": 1692789096 + }, + { + "status": 0, + "executed": 1692789396 + }, + { + "status": 0, + "executed": 1692789696 + } + ], + "issued": 1692789696, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789696, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "23999004-0b2f-4225-8481-733207b16e9a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789697 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/6 812", + "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, + "duration": 0.639489441, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/1/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-1-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "01f1697e-33fa-4c49-804a-3cbc627aedb0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/1/7 813", + "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, + "duration": 0.594065418, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783601 + }, + { + "status": 0, + "executed": 1692783901 + }, + { + "status": 0, + "executed": 1692784201 + }, + { + "status": 0, + "executed": 1692784501 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786002 + }, + { + "status": 0, + "executed": 1692786302 + }, + { + "status": 0, + "executed": 1692786603 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787203 + }, + { + "status": 0, + "executed": 1692787503 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788104 + }, + { + "status": 0, + "executed": 1692788404 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789305 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789605, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/1/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-1-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e4c7aae6-ec8c-4726-af5d-4bbbd34965ee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789606 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/0 824", + "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, + "duration": 0.598004039, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786406 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789108 + }, + { + "status": 0, + "executed": 1692789408 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f5e3c7ac-6792-4de3-bdd4-35410fd521ba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789708 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/1 827", + "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, + "duration": 0.639666871, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "470673c2-beb2-47d7-b230-86bbd01f9dcc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/2 828", + "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, + "duration": 0.603815002, + "executed": 1692789585, + "history": [ + { + "status": 0, + "executed": 1692783581 + }, + { + "status": 0, + "executed": 1692783881 + }, + { + "status": 0, + "executed": 1692784181 + }, + { + "status": 0, + "executed": 1692784481 + }, + { + "status": 0, + "executed": 1692784781 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786582 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787183 + }, + { + "status": 0, + "executed": 1692787483 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788084 + }, + { + "status": 0, + "executed": 1692788384 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789285 + }, + { + "status": 0, + "executed": 1692789585 + } + ], + "issued": 1692789585, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789585, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a748673-6c85-4789-ba51-c73c7560b70a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789586 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/3 829", + "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, + "duration": 0.645315822, + "executed": 1692789720, + "history": [ + { + "status": 0, + "executed": 1692783716 + }, + { + "status": 0, + "executed": 1692784016 + }, + { + "status": 0, + "executed": 1692784316 + }, + { + "status": 0, + "executed": 1692784616 + }, + { + "status": 0, + "executed": 1692784916 + }, + { + "status": 0, + "executed": 1692785216 + }, + { + "status": 0, + "executed": 1692785517 + }, + { + "status": 0, + "executed": 1692785817 + }, + { + "status": 0, + "executed": 1692786117 + }, + { + "status": 0, + "executed": 1692786418 + }, + { + "status": 0, + "executed": 1692786718 + }, + { + "status": 0, + "executed": 1692787018 + }, + { + "status": 0, + "executed": 1692787318 + }, + { + "status": 0, + "executed": 1692787619 + }, + { + "status": 0, + "executed": 1692787919 + }, + { + "status": 0, + "executed": 1692788219 + }, + { + "status": 0, + "executed": 1692788519 + }, + { + "status": 0, + "executed": 1692788820 + }, + { + "status": 0, + "executed": 1692789120 + }, + { + "status": 0, + "executed": 1692789420 + }, + { + "status": 0, + "executed": 1692789720 + } + ], + "issued": 1692789720, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789720, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "542274ae-8413-4e22-b472-be06c2e9ea67", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789721 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/4 830", + "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, + "duration": 0.663206242, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bfe6b6b0-6214-44d7-86da-48b30f66c740", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/5 831", + "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, + "duration": 0.65865997, + "executed": 1692789516, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786514 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789516 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789516, + "occurrences": 34824, + "occurrences_watermark": 34824, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "67c5e99e-eb04-4e24-a728-0610b00628a1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/6 832", + "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, + "duration": 0.640924662, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788179 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 34821, + "occurrences_watermark": 34821, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4e270972-f782-4ec4-baf9-a0ca74f08a59", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/2/7 835", + "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, + "duration": 0.603043125, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2eb964de-9fc9-4c21-bb31-314c50f0eaa6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789547 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/0 844", + "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, + "duration": 0.611699947, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783603 + }, + { + "status": 0, + "executed": 1692783903 + }, + { + "status": 0, + "executed": 1692784203 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "99e49764-01bc-49fa-9db9-60e6a56c6c83", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/1 845", + "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, + "duration": 0.572306476, + "executed": 1692789476, + "history": [ + { + "status": 0, + "executed": 1692783470 + }, + { + "status": 0, + "executed": 1692783770 + }, + { + "status": 0, + "executed": 1692784072 + }, + { + "status": 0, + "executed": 1692784372 + }, + { + "status": 0, + "executed": 1692784672 + }, + { + "status": 0, + "executed": 1692784972 + }, + { + "status": 0, + "executed": 1692785272 + }, + { + "status": 0, + "executed": 1692785573 + }, + { + "status": 0, + "executed": 1692785873 + }, + { + "status": 0, + "executed": 1692786173 + }, + { + "status": 0, + "executed": 1692786474 + }, + { + "status": 0, + "executed": 1692786774 + }, + { + "status": 0, + "executed": 1692787074 + }, + { + "status": 0, + "executed": 1692787374 + }, + { + "status": 0, + "executed": 1692787675 + }, + { + "status": 0, + "executed": 1692787975 + }, + { + "status": 0, + "executed": 1692788275 + }, + { + "status": 0, + "executed": 1692788575 + }, + { + "status": 0, + "executed": 1692788876 + }, + { + "status": 0, + "executed": 1692789176 + }, + { + "status": 0, + "executed": 1692789476 + } + ], + "issued": 1692789475, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789476, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "960240eb-b25a-454a-840a-2a99217caea6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789476 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/2 846", + "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, + "duration": 0.610138545, + "executed": 1692789462, + "history": [ + { + "status": 0, + "executed": 1692783457 + }, + { + "status": 0, + "executed": 1692783757 + }, + { + "status": 0, + "executed": 1692784058 + }, + { + "status": 0, + "executed": 1692784358 + }, + { + "status": 0, + "executed": 1692784658 + }, + { + "status": 0, + "executed": 1692784958 + }, + { + "status": 0, + "executed": 1692785259 + }, + { + "status": 0, + "executed": 1692785559 + }, + { + "status": 0, + "executed": 1692785859 + }, + { + "status": 0, + "executed": 1692786160 + }, + { + "status": 0, + "executed": 1692786460 + }, + { + "status": 0, + "executed": 1692786760 + }, + { + "status": 0, + "executed": 1692787060 + }, + { + "status": 0, + "executed": 1692787361 + }, + { + "status": 0, + "executed": 1692787661 + }, + { + "status": 0, + "executed": 1692787961 + }, + { + "status": 0, + "executed": 1692788262 + }, + { + "status": 0, + "executed": 1692788562 + }, + { + "status": 0, + "executed": 1692788862 + }, + { + "status": 0, + "executed": 1692789162 + }, + { + "status": 0, + "executed": 1692789462 + } + ], + "issued": 1692789462, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789462, + "occurrences": 34822, + "occurrences_watermark": 34822, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c921d37a-7b63-4125-800f-339ff852a86f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789463 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/3 848", + "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, + "duration": 0.594982983, + "executed": 1692789503, + "history": [ + { + "status": 0, + "executed": 1692783499 + }, + { + "status": 0, + "executed": 1692783799 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692785000 + }, + { + "status": 0, + "executed": 1692785300 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786201 + }, + { + "status": 0, + "executed": 1692786501 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787402 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788003 + }, + { + "status": 0, + "executed": 1692788303 + }, + { + "status": 0, + "executed": 1692788603 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789503 + } + ], + "issued": 1692789503, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789503, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6270edbd-6e35-4680-aed0-ba9f80d31fce", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789504 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/4 849", + "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, + "duration": 0.619167472, + "executed": 1692789666, + "history": [ + { + "status": 0, + "executed": 1692783662 + }, + { + "status": 0, + "executed": 1692783962 + }, + { + "status": 0, + "executed": 1692784262 + }, + { + "status": 0, + "executed": 1692784562 + }, + { + "status": 0, + "executed": 1692784862 + }, + { + "status": 0, + "executed": 1692785162 + }, + { + "status": 0, + "executed": 1692785462 + }, + { + "status": 0, + "executed": 1692785763 + }, + { + "status": 0, + "executed": 1692786063 + }, + { + "status": 0, + "executed": 1692786363 + }, + { + "status": 0, + "executed": 1692786664 + }, + { + "status": 0, + "executed": 1692786963 + }, + { + "status": 0, + "executed": 1692787264 + }, + { + "status": 0, + "executed": 1692787564 + }, + { + "status": 0, + "executed": 1692787864 + }, + { + "status": 0, + "executed": 1692788164 + }, + { + "status": 0, + "executed": 1692788465 + }, + { + "status": 0, + "executed": 1692788765 + }, + { + "status": 0, + "executed": 1692789065 + }, + { + "status": 0, + "executed": 1692789366 + }, + { + "status": 0, + "executed": 1692789666 + } + ], + "issued": 1692789665, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789666, + "occurrences": 34823, + "occurrences_watermark": 34823, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "df986126-1593-4445-ae37-14777b6d2382", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789666 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/5 850", + "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, + "duration": 0.760157126, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785629 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8fc8ed7f-9ad5-4c89-9b04-32ae30685666", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/6 851", + "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, + "duration": 0.595800512, + "executed": 1692789678, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786675 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789678 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789678, + "occurrences": 34825, + "occurrences_watermark": 34825, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5f54ae8b-7ec8-4962-bc73-7e802c52bc29", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.mad.es.geant.net xe-7/3/7 852", + "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, + "duration": 0.727176325, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786323 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789025 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.mad.es.geant.net,interface_name=xe-7/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 34820, + "occurrences_watermark": 34820, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.mad.es.geant.net-xe-7-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.mad.es.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.mad.es.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "73f7f9ec-b420-4b57-b088-8831729fb4a7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.par.fr.geant.net", + "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, + "duration": 5.510539885, + "executed": 1692789458, + "history": [ + { + "status": 1, + "executed": 1692783454 + }, + { + "status": 1, + "executed": 1692783754 + }, + { + "status": 1, + "executed": 1692784054 + }, + { + "status": 1, + "executed": 1692784355 + }, + { + "status": 1, + "executed": 1692784655 + }, + { + "status": 1, + "executed": 1692784955 + }, + { + "status": 1, + "executed": 1692785255 + }, + { + "status": 1, + "executed": 1692785556 + }, + { + "status": 1, + "executed": 1692785856 + }, + { + "status": 1, + "executed": 1692786156 + }, + { + "status": 1, + "executed": 1692786457 + }, + { + "status": 1, + "executed": 1692786757 + }, + { + "status": 1, + "executed": 1692787057 + }, + { + "status": 1, + "executed": 1692787357 + }, + { + "status": 1, + "executed": 1692787658 + }, + { + "status": 1, + "executed": 1692787958 + }, + { + "status": 1, + "executed": 1692788258 + }, + { + "status": 1, + "executed": 1692788558 + }, + { + "status": 1, + "executed": 1692788858 + }, + { + "status": 1, + "executed": 1692789158 + }, + { + "status": 1, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "2023-08-23 11:17:39,086 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:39,086 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:39,086 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:39,086 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.par.fr.geant.net\n2023-08-23 11:17:39,089 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:39,111 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.par.fr.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.par.fr.geant.net,subscription=232.223.222.1 octets=313294305606\n2023-08-23 11:17:44,236 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.2,232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.8,232.223.222.9,232.223.222.10,232.223.222.11,232.223.222.12,232.223.222.13,232.223.222.14,232.223.222.15,232.223.222.16,232.223.222.17,232.223.222.18,232.223.222.19,232.223.222.20,232.223.222.21,232.223.222.22,232.223.222.23,232.223.222.24,232.223.222.25,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.29,232.223.222.30,232.223.222.31,232.223.222.32,232.223.222.33,232.223.222.34,232.223.222.35,232.223.222.36,232.223.222.37,232.223.222.38,232.223.222.39,232.223.222.40,232.223.222.41,232.223.222.42,232.223.222.43,232.223.222.44,232.223.222.45,232.223.222.46,232.223.222.47,232.223.222.48,232.223.222.49,232.223.222.50,232.223.222.51,232.223.222.52,232.223.222.53,232.223.222.54,232.223.222.55,232.223.222.56,232.223.222.57,232.223.222.58,232.223.222.59,232.223.222.60,232.223.222.61,232.223.222.62,232.223.222.63,232.223.222.64,232.223.222.65,232.223.222.66,232.223.222.67,232.223.222.68,232.223.222.69,232.223.222.70,232.223.222.71,232.223.222.72,232.223.223.1,232.223.223.22\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 263, + "occurrences_watermark": 19067, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.par.fr.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1c0710e6-95a6-4bb3-866c-0c2c78e6571c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789464 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae1 685", + "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, + "duration": 0.573275531, + "executed": 1692789654, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785150 + }, + { + "status": 0, + "executed": 1692785451 + }, + { + "status": 0, + "executed": 1692785751 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786952 + }, + { + "status": 0, + "executed": 1692787252 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787853 + }, + { + "status": 0, + "executed": 1692788153 + }, + { + "status": 0, + "executed": 1692788453 + }, + { + "status": 0, + "executed": 1692788753 + }, + { + "status": 0, + "executed": 1692789054 + }, + { + "status": 0, + "executed": 1692789354 + }, + { + "status": 0, + "executed": 1692789654 + } + ], + "issued": 1692789654, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae1 ingressOctets=307206846386,egressOctets=1765523969313,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789654, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b3adcbb5-dccc-4e67-8a59-fbc538b467a7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789655 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae1.103 711", + "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, + "duration": 0.481906422, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783699 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784600 + }, + { + "status": 0, + "executed": 1692784900 + }, + { + "status": 0, + "executed": 1692785200 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786101 + }, + { + "status": 0, + "executed": 1692786401 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787001 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789103 + }, + { + "status": 0, + "executed": 1692789403 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae1.103 ingressOctets=47767337394,egressOctets=5296101521,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae1.103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9163dacf-1b1e-4cb7-bf43-0775eff53044", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789703 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae1.105 717", + "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, + "duration": 0.515071831, + "executed": 1692789701, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783998 + }, + { + "status": 0, + "executed": 1692784298 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785499 + }, + { + "status": 0, + "executed": 1692785799 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787300 + }, + { + "status": 0, + "executed": 1692787600 + }, + { + "status": 0, + "executed": 1692787900 + }, + { + "status": 0, + "executed": 1692788201 + }, + { + "status": 0, + "executed": 1692788501 + }, + { + "status": 0, + "executed": 1692788801 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789701 + } + ], + "issued": 1692789701, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae1.105 ingressOctets=238692516535,egressOctets=1747992059166,ingressErrors=0,egressErrors=0,ingressOctetsv6=613476004,egressOctetsv6=2689647381,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789701, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae1.105", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "869da952-76f0-455d-8866-e1c38556a6f8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae1.106 710", + "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, + "duration": 0.514054661, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae1.106 ingressOctets=11499050296,egressOctets=5816833715,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 5944, + "occurrences_watermark": 5944, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae1.106", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ef4ec891-6cca-4e74-802e-dd36f204711f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae1.25 715", + "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, + "duration": 0.509308126, + "executed": 1692789668, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786666 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789668 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae1.25 ingressOctets=1815846234,egressOctets=1630015566,ingressErrors=0,egressErrors=0,ingressOctetsv6=943784736,egressOctetsv6=913131582,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789668, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae1.25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "03d750a3-6aad-478e-87da-1d10461cbef5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae1.3009 1304", + "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, + "duration": 0.553695655, + "executed": 1692789641, + "history": [ + { + "status": 0, + "executed": 1692783637 + }, + { + "status": 0, + "executed": 1692783937 + }, + { + "status": 0, + "executed": 1692784237 + }, + { + "status": 0, + "executed": 1692784537 + }, + { + "status": 0, + "executed": 1692784837 + }, + { + "status": 0, + "executed": 1692785137 + }, + { + "status": 0, + "executed": 1692785438 + }, + { + "status": 0, + "executed": 1692785738 + }, + { + "status": 0, + "executed": 1692786038 + }, + { + "status": 0, + "executed": 1692786338 + }, + { + "status": 0, + "executed": 1692786639 + }, + { + "status": 0, + "executed": 1692786939 + }, + { + "status": 0, + "executed": 1692787239 + }, + { + "status": 0, + "executed": 1692787539 + }, + { + "status": 0, + "executed": 1692787840 + }, + { + "status": 0, + "executed": 1692788140 + }, + { + "status": 0, + "executed": 1692788440 + }, + { + "status": 0, + "executed": 1692788743 + }, + { + "status": 0, + "executed": 1692789041 + }, + { + "status": 0, + "executed": 1692789341 + }, + { + "status": 0, + "executed": 1692789641 + } + ], + "issued": 1692789641, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae1.3009 ingressOctets=2427751730,egressOctets=2654852841,ingressErrors=0,egressErrors=0,ingressOctetsv6=11743677,egressOctetsv6=2631688,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789641, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae1.3009", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "02e52f7e-b0cc-4a61-bb45-d4db9c2ec05f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789642 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae1.998 739", + "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, + "duration": 0.467157796, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783663 + }, + { + "status": 0, + "executed": 1692783963 + }, + { + "status": 0, + "executed": 1692784263 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785764 + }, + { + "status": 0, + "executed": 1692786064 + }, + { + "status": 0, + "executed": 1692786364 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787265 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788166 + }, + { + "status": 0, + "executed": 1692788466 + }, + { + "status": 0, + "executed": 1692788766 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789367 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae1.998 ingressOctets=2956481759,egressOctets=1800783501,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae1.998", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "444cebc4-beb8-475e-bfb8-8e268eb9c2f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12 678", + "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, + "duration": 0.57275608, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12 ingressOctets=2652223591945271,egressOctets=4381411060709664,ingressErrors=74,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6881c110-91d3-4892-8e0c-3e03731cd873", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.1382 850", + "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, + "duration": 0.494389767, + "executed": 1692789686, + "history": [ + { + "status": 0, + "executed": 1692783682 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784583 + }, + { + "status": 0, + "executed": 1692784883 + }, + { + "status": 0, + "executed": 1692785183 + }, + { + "status": 0, + "executed": 1692785483 + }, + { + "status": 0, + "executed": 1692785784 + }, + { + "status": 0, + "executed": 1692786084 + }, + { + "status": 0, + "executed": 1692786384 + }, + { + "status": 0, + "executed": 1692786685 + }, + { + "status": 0, + "executed": 1692786984 + }, + { + "status": 0, + "executed": 1692787285 + }, + { + "status": 0, + "executed": 1692787585 + }, + { + "status": 0, + "executed": 1692787885 + }, + { + "status": 0, + "executed": 1692788185 + }, + { + "status": 0, + "executed": 1692788485 + }, + { + "status": 0, + "executed": 1692788786 + }, + { + "status": 0, + "executed": 1692789086 + }, + { + "status": 0, + "executed": 1692789386 + }, + { + "status": 0, + "executed": 1692789686 + } + ], + "issued": 1692789686, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.1382 ingressOctets=110416481,egressOctets=109377952,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789686, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.1382", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d71af565-8bf7-4358-9033-1f4551df2ec6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789687 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.1390 833", + "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, + "duration": 0.600981566, + "executed": 1692789681, + "history": [ + { + "status": 0, + "executed": 1692783676 + }, + { + "status": 0, + "executed": 1692783976 + }, + { + "status": 0, + "executed": 1692784276 + }, + { + "status": 0, + "executed": 1692784577 + }, + { + "status": 0, + "executed": 1692784877 + }, + { + "status": 0, + "executed": 1692785177 + }, + { + "status": 0, + "executed": 1692785477 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786078 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786978 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787579 + }, + { + "status": 0, + "executed": 1692787879 + }, + { + "status": 0, + "executed": 1692788180 + }, + { + "status": 0, + "executed": 1692788480 + }, + { + "status": 0, + "executed": 1692788780 + }, + { + "status": 0, + "executed": 1692789081 + }, + { + "status": 0, + "executed": 1692789381 + }, + { + "status": 0, + "executed": 1692789681 + } + ], + "issued": 1692789680, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.1390 ingressOctets=1116,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789681, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.1390", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b634aefb-7268-4bab-8e28-fb68fb97e2ad", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789681 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.1391 874", + "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, + "duration": 0.533929732, + "executed": 1692789550, + "history": [ + { + "status": 0, + "executed": 1692783546 + }, + { + "status": 0, + "executed": 1692783846 + }, + { + "status": 0, + "executed": 1692784146 + }, + { + "status": 0, + "executed": 1692784446 + }, + { + "status": 0, + "executed": 1692784746 + }, + { + "status": 0, + "executed": 1692785047 + }, + { + "status": 0, + "executed": 1692785347 + }, + { + "status": 0, + "executed": 1692785647 + }, + { + "status": 0, + "executed": 1692785947 + }, + { + "status": 0, + "executed": 1692786248 + }, + { + "status": 0, + "executed": 1692786548 + }, + { + "status": 0, + "executed": 1692786848 + }, + { + "status": 0, + "executed": 1692787148 + }, + { + "status": 0, + "executed": 1692787448 + }, + { + "status": 0, + "executed": 1692787749 + }, + { + "status": 0, + "executed": 1692788049 + }, + { + "status": 0, + "executed": 1692788350 + }, + { + "status": 0, + "executed": 1692788650 + }, + { + "status": 0, + "executed": 1692788950 + }, + { + "status": 0, + "executed": 1692789250 + }, + { + "status": 0, + "executed": 1692789550 + } + ], + "issued": 1692789550, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.1391 ingressOctets=1002,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789550, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.1391", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6d602ffd-77fe-4e11-a4cf-c3d0b2bdaf09", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789551 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.160 763", + "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, + "duration": 0.514633717, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789093 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.160 ingressOctets=2323032376410495,egressOctets=3427845856316324,ingressErrors=0,egressErrors=0,ingressOctetsv6=1127646733245812,egressOctetsv6=2251422538362299,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.160", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0b10aea4-1f6a-412b-ae02-fdc05d10ceac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.161 855", + "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, + "duration": 0.48018369, + "executed": 1692789695, + "history": [ + { + "status": 0, + "executed": 1692783692 + }, + { + "status": 0, + "executed": 1692783992 + }, + { + "status": 0, + "executed": 1692784292 + }, + { + "status": 0, + "executed": 1692784593 + }, + { + "status": 0, + "executed": 1692784893 + }, + { + "status": 0, + "executed": 1692785193 + }, + { + "status": 0, + "executed": 1692785493 + }, + { + "status": 0, + "executed": 1692785793 + }, + { + "status": 0, + "executed": 1692786093 + }, + { + "status": 0, + "executed": 1692786394 + }, + { + "status": 0, + "executed": 1692786694 + }, + { + "status": 0, + "executed": 1692786994 + }, + { + "status": 0, + "executed": 1692787294 + }, + { + "status": 0, + "executed": 1692787594 + }, + { + "status": 0, + "executed": 1692787894 + }, + { + "status": 0, + "executed": 1692788194 + }, + { + "status": 0, + "executed": 1692788495 + }, + { + "status": 0, + "executed": 1692788795 + }, + { + "status": 0, + "executed": 1692789095 + }, + { + "status": 0, + "executed": 1692789395 + }, + { + "status": 0, + "executed": 1692789695 + } + ], + "issued": 1692789695, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.161 ingressOctets=121063590,egressOctets=151806286,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789695, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.161", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1129f0c8-9ca2-4658-be1b-c0094391c623", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789696 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.2200 1082", + "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, + "duration": 0.531086229, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.2200 ingressOctets=136240048,egressOctets=31132040,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.2200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fe79a645-0d12-400a-91bc-fdfbbb5597a2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.3005 628", + "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, + "duration": 0.506320636, + "executed": 1692789703, + "history": [ + { + "status": 0, + "executed": 1692783699 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784600 + }, + { + "status": 0, + "executed": 1692784900 + }, + { + "status": 0, + "executed": 1692785200 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786401 + }, + { + "status": 0, + "executed": 1692786701 + }, + { + "status": 0, + "executed": 1692787001 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787902 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788803 + }, + { + "status": 0, + "executed": 1692789103 + }, + { + "status": 0, + "executed": 1692789403 + }, + { + "status": 0, + "executed": 1692789703 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.3005 ingressOctets=1093680461,egressOctets=1765647069,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789703, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.3005", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bdaf1395-435f-4010-988c-567354ec110e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789703 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.333 587", + "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, + "duration": 0.56207393, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.333 ingressOctets=329248521170219,egressOctets=953843366333808,ingressErrors=0,egressErrors=0,ingressOctetsv6=24263085783495,egressOctetsv6=11315806201252,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "48ad4767-7b3d-433f-845c-a640381a7959", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.488 937", + "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, + "duration": 0.495093814, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.488 ingressOctets=160061602,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.488", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e337406b-5dcf-4195-8818-7071d7d838e3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.519 762", + "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, + "duration": 0.552439624, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783598 + }, + { + "status": 0, + "executed": 1692783898 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.519 ingressOctets=784814550,egressOctets=10585994184,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.519", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "351b41d5-b547-445f-b181-2a49a887c42f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.550 934", + "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, + "duration": 0.608065475, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.550 ingressOctets=0,egressOctets=191187971,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.550", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3d635bec-4b2a-4ac2-94c7-0fee0158bed7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae12.854 981", + "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, + "duration": 0.521230309, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785816 + }, + { + "status": 0, + "executed": 1692786116 + }, + { + "status": 0, + "executed": 1692786417 + }, + { + "status": 0, + "executed": 1692786717 + }, + { + "status": 0, + "executed": 1692787017 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae12.854 ingressOctets=7296667943,egressOctets=7643855438,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae12.854", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3f905a31-0120-4596-92e9-8ef8db5340bc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13 684", + "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, + "duration": 0.552422539, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785506 + }, + { + "status": 0, + "executed": 1692785806 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786708 + }, + { + "status": 0, + "executed": 1692787008 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787909 + }, + { + "status": 0, + "executed": 1692788209 + }, + { + "status": 0, + "executed": 1692788509 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789709, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae13 ingressOctets=433608126133753,egressOctets=288982595986832,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 5945, + "occurrences_watermark": 5945, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bd875e53-5d34-4f77-8dd1-0cf01cf4d6e2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.100 811", + "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, + "duration": 1.087936237, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784576 + }, + { + "status": 0, + "executed": 1692784876 + }, + { + "status": 0, + "executed": 1692785176 + }, + { + "status": 0, + "executed": 1692785476 + }, + { + "status": 0, + "executed": 1692785776 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786977 + }, + { + "status": 0, + "executed": 1692787277 + }, + { + "status": 0, + "executed": 1692787578 + }, + { + "status": 0, + "executed": 1692787878 + }, + { + "status": 0, + "executed": 1692788178 + }, + { + "status": 0, + "executed": 1692788478 + }, + { + "status": 0, + "executed": 1692788779 + }, + { + "status": 0, + "executed": 1692789079 + }, + { + "status": 0, + "executed": 1692789379 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae13.100 ingressOctets=190157623512730,egressOctets=126874920880,ingressErrors=0,egressErrors=0,ingressOctetsv6=168935556573804,egressOctetsv6=570606456,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae13.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2145ff66-7e5c-48f7-b3b9-c646846edc41", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.203 969", + "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, + "duration": 0.524086862, + "executed": 1692789652, + "history": [ + { + "status": 0, + "executed": 1692783648 + }, + { + "status": 0, + "executed": 1692783948 + }, + { + "status": 0, + "executed": 1692784248 + }, + { + "status": 0, + "executed": 1692784548 + }, + { + "status": 0, + "executed": 1692784849 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785449 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786049 + }, + { + "status": 0, + "executed": 1692786350 + }, + { + "status": 0, + "executed": 1692786650 + }, + { + "status": 0, + "executed": 1692786950 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787851 + }, + { + "status": 0, + "executed": 1692788151 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789052 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789652 + } + ], + "issued": 1692789652, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae13.203 ingressOctets=59501904640,egressOctets=26679734939,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789652, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae13.203", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1d274c87-9344-4948-b887-a62ab1190b15", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789653 + }, + { + "check": { + "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, + "duration": 0.498014631, + "executed": 1692789717, + "history": [ + { + "status": 0, + "executed": 1692783713 + }, + { + "status": 0, + "executed": 1692784013 + }, + { + "status": 0, + "executed": 1692784313 + }, + { + "status": 0, + "executed": 1692784614 + }, + { + "status": 0, + "executed": 1692784914 + }, + { + "status": 0, + "executed": 1692785214 + }, + { + "status": 0, + "executed": 1692785514 + }, + { + "status": 0, + "executed": 1692785814 + }, + { + "status": 0, + "executed": 1692786114 + }, + { + "status": 0, + "executed": 1692786415 + }, + { + "status": 0, + "executed": 1692786715 + }, + { + "status": 0, + "executed": 1692787015 + }, + { + "status": 0, + "executed": 1692787316 + }, + { + "status": 0, + "executed": 1692787616 + }, + { + "status": 0, + "executed": 1692787916 + }, + { + "status": 0, + "executed": 1692788216 + }, + { + "status": 0, + "executed": 1692788516 + }, + { + "status": 0, + "executed": 1692788817 + }, + { + "status": 0, + "executed": 1692789117 + }, + { + "status": 0, + "executed": 1692789417 + }, + { + "status": 0, + "executed": 1692789717 + } + ], + "issued": 1692789716, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae13.3005 ingressOctets=1742775482,egressOctets=6470878097,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789717, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae13.3005", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d6166f55-9012-44e9-90c8-6ddb145e7ab1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789717 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.333 612", + "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, + "duration": 0.469536732, + "executed": 1692789585, + "history": [ + { + "status": 0, + "executed": 1692783581 + }, + { + "status": 0, + "executed": 1692783881 + }, + { + "status": 0, + "executed": 1692784181 + }, + { + "status": 0, + "executed": 1692784481 + }, + { + "status": 0, + "executed": 1692784781 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785982 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786582 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787183 + }, + { + "status": 0, + "executed": 1692787483 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788084 + }, + { + "status": 0, + "executed": 1692788384 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789285 + }, + { + "status": 0, + "executed": 1692789585 + } + ], + "issued": 1692789585, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae13.333 ingressOctets=511710006,egressOctets=1365739725,ingressErrors=0,egressErrors=0,ingressOctetsv6=224627351,egressOctetsv6=112645508,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789585, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae13.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "30ca5434-ddde-4e7c-a262-bf5ce4f03503", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789586 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.37 735", + "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, + "duration": 0.525720915, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785080 + }, + { + "status": 0, + "executed": 1692785380 + }, + { + "status": 0, + "executed": 1692785680 + }, + { + "status": 0, + "executed": 1692785981 + }, + { + "status": 0, + "executed": 1692786281 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786881 + }, + { + "status": 0, + "executed": 1692787181 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787782 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788683 + }, + { + "status": 0, + "executed": 1692788983 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789583, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae13.37 ingressOctets=94900,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae13.37", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a7905e86-b164-4033-9697-78e6d70b783e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.40 729", + "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, + "duration": 0.519873661, + "executed": 1692789474, + "history": [ + { + "status": 0, + "executed": 1692783469 + }, + { + "status": 0, + "executed": 1692783769 + }, + { + "status": 0, + "executed": 1692784069 + }, + { + "status": 0, + "executed": 1692784370 + }, + { + "status": 0, + "executed": 1692784670 + }, + { + "status": 0, + "executed": 1692784970 + }, + { + "status": 0, + "executed": 1692785270 + }, + { + "status": 0, + "executed": 1692785571 + }, + { + "status": 0, + "executed": 1692785871 + }, + { + "status": 0, + "executed": 1692786171 + }, + { + "status": 0, + "executed": 1692786472 + }, + { + "status": 0, + "executed": 1692786772 + }, + { + "status": 0, + "executed": 1692787072 + }, + { + "status": 0, + "executed": 1692787372 + }, + { + "status": 0, + "executed": 1692787673 + }, + { + "status": 0, + "executed": 1692787973 + }, + { + "status": 0, + "executed": 1692788273 + }, + { + "status": 0, + "executed": 1692788573 + }, + { + "status": 0, + "executed": 1692788874 + }, + { + "status": 0, + "executed": 1692789174 + }, + { + "status": 0, + "executed": 1692789474 + } + ], + "issued": 1692789474, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae13.40 ingressOctets=172317808359,egressOctets=93056238076,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789474, + "occurrences": 8009, + "occurrences_watermark": 8009, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae13.40", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ddd8e12e-dcc3-47be-a58e-0ca58c196e26", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789475 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.50 732", + "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, + "duration": 0.554364737, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787213 + }, + { + "status": 0, + "executed": 1692787514 + }, + { + "status": 0, + "executed": 1692787814 + }, + { + "status": 0, + "executed": 1692788115 + }, + { + "status": 0, + "executed": 1692788415 + }, + { + "status": 0, + "executed": 1692788715 + }, + { + "status": 0, + "executed": 1692789015 + }, + { + "status": 0, + "executed": 1692789316 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789615, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae13.50 ingressOctets=0,egressOctets=1002,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae13.50", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4d1c0381-c7d5-4da0-8c1c-3e76481e4de3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789616 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.60 631", + "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, + "duration": 0.508853885, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae13.60 ingressOctets=36756409185428,egressOctets=61099576482298,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae13.60", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2228278e-809d-4155-bc4f-381de774a5a4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae13.90 755", + "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, + "duration": 0.499265082, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae13.90 ingressOctets=206451257081164,egressOctets=227626852820738,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae13.90", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b3a22a47-9493-4dee-8816-a3eeac5891df", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae14 686", + "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, + "duration": 0.56665369, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae14 ingressOctets=4331060477219408,egressOctets=3545886320173193,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae14", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "30fa9869-75e1-437f-a532-3096be7629b1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae14.111 720", + "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, + "duration": 0.486134362, + "executed": 1692789659, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788458 + }, + { + "status": 0, + "executed": 1692788758 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789359 + }, + { + "status": 0, + "executed": 1692789659 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae14.111 ingressOctets=706649859485713,egressOctets=1458487031698038,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789659, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae14.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c6b9df55-089a-43c9-891e-e579d69aa9fb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae14.116 721", + "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, + "duration": 0.59922953, + "executed": 1692789628, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786325 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788427 + }, + { + "status": 0, + "executed": 1692788727 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789328 + }, + { + "status": 0, + "executed": 1692789628 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae14.116 ingressOctets=3624375540860364,egressOctets=2087335715774972,ingressErrors=0,egressErrors=0,ingressOctetsv6=3624377161665276,egressOctetsv6=2087338391021577,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789628, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae14.116", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f1df34e9-c3f4-4463-a251-50057357194e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15 687", + "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, + "duration": 0.554207869, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783548 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785049 + }, + { + "status": 0, + "executed": 1692785349 + }, + { + "status": 0, + "executed": 1692785649 + }, + { + "status": 0, + "executed": 1692785949 + }, + { + "status": 0, + "executed": 1692786249 + }, + { + "status": 0, + "executed": 1692786550 + }, + { + "status": 0, + "executed": 1692786850 + }, + { + "status": 0, + "executed": 1692787150 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787751 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15 ingressOctets=9509687794680380,egressOctets=10934493055938193,ingressErrors=765,egressErrors=30,ingressDiscards=0,egressDiscards=3184867\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c86705f7-9832-4be1-8cdf-ba19e544caa4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.102 875", + "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, + "duration": 0.471065958, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783549 + }, + { + "status": 0, + "executed": 1692783850 + }, + { + "status": 0, + "executed": 1692784150 + }, + { + "status": 0, + "executed": 1692784450 + }, + { + "status": 0, + "executed": 1692784750 + }, + { + "status": 0, + "executed": 1692785050 + }, + { + "status": 0, + "executed": 1692785350 + }, + { + "status": 0, + "executed": 1692785650 + }, + { + "status": 0, + "executed": 1692785950 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787452 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788053 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.102 ingressOctets=1003448988986037,egressOctets=4203996250991119,ingressErrors=0,egressErrors=0,ingressOctetsv6=1179710302690,egressOctetsv6=1583428480658409,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.102", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "df785e93-2320-492a-985c-2c236187750e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.1074 1294", + "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, + "duration": 0.517606587, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.1074 ingressOctets=393033775615960,egressOctets=139334588604145,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.1074", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "88751df3-46ae-4743-8fd3-b41343d6402e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.1075 1298", + "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, + "duration": 0.497973431, + "executed": 1692789574, + "history": [ + { + "status": 0, + "executed": 1692783569 + }, + { + "status": 0, + "executed": 1692783870 + }, + { + "status": 0, + "executed": 1692784170 + }, + { + "status": 0, + "executed": 1692784470 + }, + { + "status": 0, + "executed": 1692784770 + }, + { + "status": 0, + "executed": 1692785070 + }, + { + "status": 0, + "executed": 1692785370 + }, + { + "status": 0, + "executed": 1692785670 + }, + { + "status": 0, + "executed": 1692785971 + }, + { + "status": 0, + "executed": 1692786271 + }, + { + "status": 0, + "executed": 1692786571 + }, + { + "status": 0, + "executed": 1692786871 + }, + { + "status": 0, + "executed": 1692787171 + }, + { + "status": 0, + "executed": 1692787472 + }, + { + "status": 0, + "executed": 1692787772 + }, + { + "status": 0, + "executed": 1692788073 + }, + { + "status": 0, + "executed": 1692788373 + }, + { + "status": 0, + "executed": 1692788673 + }, + { + "status": 0, + "executed": 1692788973 + }, + { + "status": 0, + "executed": 1692789274 + }, + { + "status": 0, + "executed": 1692789574 + } + ], + "issued": 1692789573, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.1075 ingressOctets=2148017088,egressOctets=1299076130,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789574, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.1075", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0c5238d9-a9d9-4581-8767-edd213b6f8bc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789574 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.1125 889", + "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, + "duration": 0.560647288, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784120 + }, + { + "status": 0, + "executed": 1692784420 + }, + { + "status": 0, + "executed": 1692784720 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785621 + }, + { + "status": 0, + "executed": 1692785921 + }, + { + "status": 0, + "executed": 1692786221 + }, + { + "status": 0, + "executed": 1692786522 + }, + { + "status": 0, + "executed": 1692786822 + }, + { + "status": 0, + "executed": 1692787122 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787723 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788924 + }, + { + "status": 0, + "executed": 1692789224 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.1125 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.1125", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "62a3e5b8-49a2-4fdb-a2db-455efffbd3e4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.1916 1087", + "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, + "duration": 0.567489623, + "executed": 1692789654, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785150 + }, + { + "status": 0, + "executed": 1692785451 + }, + { + "status": 0, + "executed": 1692785751 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786952 + }, + { + "status": 0, + "executed": 1692787252 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787853 + }, + { + "status": 0, + "executed": 1692788153 + }, + { + "status": 0, + "executed": 1692788453 + }, + { + "status": 0, + "executed": 1692788753 + }, + { + "status": 0, + "executed": 1692789054 + }, + { + "status": 0, + "executed": 1692789354 + }, + { + "status": 0, + "executed": 1692789654 + } + ], + "issued": 1692789654, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.1916 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789654, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.1916", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "21435a50-091d-4a1e-88d0-12ab4a56ffae", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789655 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2001 613", + "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, + "duration": 0.600836379, + "executed": 1692789517, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784113 + }, + { + "status": 0, + "executed": 1692784413 + }, + { + "status": 0, + "executed": 1692784713 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785614 + }, + { + "status": 0, + "executed": 1692785914 + }, + { + "status": 0, + "executed": 1692786215 + }, + { + "status": 0, + "executed": 1692786515 + }, + { + "status": 0, + "executed": 1692786815 + }, + { + "status": 0, + "executed": 1692787115 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787716 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788917 + }, + { + "status": 0, + "executed": 1692789217 + }, + { + "status": 0, + "executed": 1692789517 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.2001 ingressOctets=11129597309,egressOctets=37650817456016,ingressErrors=0,egressErrors=0,ingressOctetsv6=10412375389,egressOctetsv6=15403847827,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789517, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.2001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ac3567ca-b87d-48e8-9212-3ecfd0ccdf15", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789517 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2004 617", + "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, + "duration": 0.482540438, + "executed": 1692789535, + "history": [ + { + "status": 0, + "executed": 1692783531 + }, + { + "status": 0, + "executed": 1692783831 + }, + { + "status": 0, + "executed": 1692784131 + }, + { + "status": 0, + "executed": 1692784431 + }, + { + "status": 0, + "executed": 1692784731 + }, + { + "status": 0, + "executed": 1692785032 + }, + { + "status": 0, + "executed": 1692785332 + }, + { + "status": 0, + "executed": 1692785632 + }, + { + "status": 0, + "executed": 1692785932 + }, + { + "status": 0, + "executed": 1692786233 + }, + { + "status": 0, + "executed": 1692786533 + }, + { + "status": 0, + "executed": 1692786833 + }, + { + "status": 0, + "executed": 1692787133 + }, + { + "status": 0, + "executed": 1692787433 + }, + { + "status": 0, + "executed": 1692787734 + }, + { + "status": 0, + "executed": 1692788034 + }, + { + "status": 0, + "executed": 1692788334 + }, + { + "status": 0, + "executed": 1692788634 + }, + { + "status": 0, + "executed": 1692788935 + }, + { + "status": 0, + "executed": 1692789235 + }, + { + "status": 0, + "executed": 1692789535 + } + ], + "issued": 1692789534, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.2004 ingressOctets=9706365342,egressOctets=860300265213932,ingressErrors=0,egressErrors=0,ingressOctetsv6=4929378612,egressOctetsv6=817455638095689,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789535, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.2004", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "74bd3274-ce65-4991-9570-b43b22ca8ec2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789535 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2015 624", + "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, + "duration": 0.511154403, + "executed": 1692789654, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784550 + }, + { + "status": 0, + "executed": 1692784852 + }, + { + "status": 0, + "executed": 1692785150 + }, + { + "status": 0, + "executed": 1692785451 + }, + { + "status": 0, + "executed": 1692785751 + }, + { + "status": 0, + "executed": 1692786051 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786652 + }, + { + "status": 0, + "executed": 1692786952 + }, + { + "status": 0, + "executed": 1692787252 + }, + { + "status": 0, + "executed": 1692787553 + }, + { + "status": 0, + "executed": 1692787853 + }, + { + "status": 0, + "executed": 1692788153 + }, + { + "status": 0, + "executed": 1692788453 + }, + { + "status": 0, + "executed": 1692788753 + }, + { + "status": 0, + "executed": 1692789054 + }, + { + "status": 0, + "executed": 1692789354 + }, + { + "status": 0, + "executed": 1692789654 + } + ], + "issued": 1692789654, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.2015 ingressOctets=47514156,egressOctets=61935063,ingressErrors=0,egressErrors=0,ingressOctetsv6=30879905,egressOctetsv6=3847324,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789654, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.2015", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f0bc5824-a018-4b6d-bb1f-97c6d1904491", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789655 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2023 962", + "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, + "duration": 0.514701355, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.2023 ingressOctets=3783796897502208,egressOctets=1926553411445729,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.2023", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d5a19728-b666-4991-951a-644211d453b9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.204 877", + "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, + "duration": 0.548841138, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783835 + }, + { + "status": 0, + "executed": 1692784135 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785036 + }, + { + "status": 0, + "executed": 1692785336 + }, + { + "status": 0, + "executed": 1692785636 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786537 + }, + { + "status": 0, + "executed": 1692786837 + }, + { + "status": 0, + "executed": 1692787137 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787738 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789239 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.204 ingressOctets=1531227292503310,egressOctets=742032857943091,ingressErrors=0,egressErrors=0,ingressOctetsv6=328677383074048,egressOctetsv6=207815947792058,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.204", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a2044821-71af-44e3-a7c6-783d9c52e793", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789540 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.205 867", + "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, + "duration": 0.510925003, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783856 + }, + { + "status": 0, + "executed": 1692784156 + }, + { + "status": 0, + "executed": 1692784456 + }, + { + "status": 0, + "executed": 1692784756 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785956 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.205 ingressOctets=114105386587505,egressOctets=231482044821118,ingressErrors=0,egressErrors=0,ingressOctetsv6=13429053067609,egressOctetsv6=7251710019982,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.205", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "993e19e3-3e77-4c51-b224-687973b760ee", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.207 869", + "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, + "duration": 1.051206414, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784576 + }, + { + "status": 0, + "executed": 1692784876 + }, + { + "status": 0, + "executed": 1692785176 + }, + { + "status": 0, + "executed": 1692785476 + }, + { + "status": 0, + "executed": 1692785776 + }, + { + "status": 0, + "executed": 1692786077 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786977 + }, + { + "status": 0, + "executed": 1692787277 + }, + { + "status": 0, + "executed": 1692787578 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788178 + }, + { + "status": 0, + "executed": 1692788478 + }, + { + "status": 0, + "executed": 1692788778 + }, + { + "status": 0, + "executed": 1692789079 + }, + { + "status": 0, + "executed": 1692789379 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.207 ingressOctets=228651214,egressOctets=405584015983,ingressErrors=0,egressErrors=0,ingressOctetsv6=49129375,egressOctetsv6=405426617838,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.207", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ddbbf2b1-c01b-4c35-81aa-fe14416d8adb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.212 871", + "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, + "duration": 0.542622754, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.212 ingressOctets=364740698,egressOctets=341207430,ingressErrors=0,egressErrors=0,ingressOctetsv6=50541909,egressOctetsv6=3101019,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.212", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "95e7023f-7bf6-43aa-8882-a93ec1f72d53", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2128 1067", + "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, + "duration": 0.598155967, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783563 + }, + { + "status": 0, + "executed": 1692783863 + }, + { + "status": 0, + "executed": 1692784163 + }, + { + "status": 0, + "executed": 1692784465 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.2128 ingressOctets=7485802157661,egressOctets=3183580275936,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.2128", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0f443689-c68d-4a00-ba6c-bef9c1575ff7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2200 625", + "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, + "duration": 0.589299919, + "executed": 1692789524, + "history": [ + { + "status": 0, + "executed": 1692783519 + }, + { + "status": 0, + "executed": 1692783819 + }, + { + "status": 0, + "executed": 1692784119 + }, + { + "status": 0, + "executed": 1692784419 + }, + { + "status": 0, + "executed": 1692784719 + }, + { + "status": 0, + "executed": 1692785020 + }, + { + "status": 0, + "executed": 1692785320 + }, + { + "status": 0, + "executed": 1692785620 + }, + { + "status": 0, + "executed": 1692785920 + }, + { + "status": 0, + "executed": 1692786220 + }, + { + "status": 0, + "executed": 1692786521 + }, + { + "status": 0, + "executed": 1692786821 + }, + { + "status": 0, + "executed": 1692787121 + }, + { + "status": 0, + "executed": 1692787422 + }, + { + "status": 0, + "executed": 1692787722 + }, + { + "status": 0, + "executed": 1692788023 + }, + { + "status": 0, + "executed": 1692788323 + }, + { + "status": 0, + "executed": 1692788623 + }, + { + "status": 0, + "executed": 1692788923 + }, + { + "status": 0, + "executed": 1692789223 + }, + { + "status": 0, + "executed": 1692789524 + } + ], + "issued": 1692789524, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.2200 ingressOctets=1670359937267939,egressOctets=2156979451665796,ingressErrors=0,egressErrors=0,ingressOctetsv6=655117837526234,egressOctetsv6=694247666871425,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789524, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.2200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0d64d250-3482-4357-869d-910379fa1ed1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789525 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.221 873", + "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, + "duration": 0.468596671, + "executed": 1692789542, + "history": [ + { + "status": 0, + "executed": 1692783538 + }, + { + "status": 0, + "executed": 1692783838 + }, + { + "status": 0, + "executed": 1692784138 + }, + { + "status": 0, + "executed": 1692784438 + }, + { + "status": 0, + "executed": 1692784738 + }, + { + "status": 0, + "executed": 1692785039 + }, + { + "status": 0, + "executed": 1692785339 + }, + { + "status": 0, + "executed": 1692785639 + }, + { + "status": 0, + "executed": 1692785938 + }, + { + "status": 0, + "executed": 1692786239 + }, + { + "status": 0, + "executed": 1692786540 + }, + { + "status": 0, + "executed": 1692786840 + }, + { + "status": 0, + "executed": 1692787140 + }, + { + "status": 0, + "executed": 1692787440 + }, + { + "status": 0, + "executed": 1692787741 + }, + { + "status": 0, + "executed": 1692788041 + }, + { + "status": 0, + "executed": 1692788341 + }, + { + "status": 0, + "executed": 1692788641 + }, + { + "status": 0, + "executed": 1692788942 + }, + { + "status": 0, + "executed": 1692789242 + }, + { + "status": 0, + "executed": 1692789542 + } + ], + "issued": 1692789541, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.221 ingressOctets=9802745034858,egressOctets=254172449927935,ingressErrors=0,egressErrors=0,ingressOctetsv6=577675513,egressOctetsv6=207340716749397,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789542, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.221", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b50b9571-4c8a-425c-a483-618dbbe63d7a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789542 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.2511 634", + "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, + "duration": 0.479370673, + "executed": 1692789688, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783985 + }, + { + "status": 0, + "executed": 1692784285 + }, + { + "status": 0, + "executed": 1692784585 + }, + { + "status": 0, + "executed": 1692784885 + }, + { + "status": 0, + "executed": 1692785185 + }, + { + "status": 0, + "executed": 1692785485 + }, + { + "status": 0, + "executed": 1692785786 + }, + { + "status": 0, + "executed": 1692786086 + }, + { + "status": 0, + "executed": 1692786386 + }, + { + "status": 0, + "executed": 1692786686 + }, + { + "status": 0, + "executed": 1692786986 + }, + { + "status": 0, + "executed": 1692787287 + }, + { + "status": 0, + "executed": 1692787587 + }, + { + "status": 0, + "executed": 1692787887 + }, + { + "status": 0, + "executed": 1692788187 + }, + { + "status": 0, + "executed": 1692788487 + }, + { + "status": 0, + "executed": 1692788788 + }, + { + "status": 0, + "executed": 1692789088 + }, + { + "status": 0, + "executed": 1692789388 + }, + { + "status": 0, + "executed": 1692789688 + } + ], + "issued": 1692789687, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.2511 ingressOctets=62579016,egressOctets=75456981,ingressErrors=0,egressErrors=0,ingressOctetsv6=34805299,egressOctetsv6=264901,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789688, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.2511", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0a57639f-abba-4210-9104-29f81f300d88", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789688 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.300 903", + "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, + "duration": 0.541243795, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784576 + }, + { + "status": 0, + "executed": 1692784876 + }, + { + "status": 0, + "executed": 1692785176 + }, + { + "status": 0, + "executed": 1692785476 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786077 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786977 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787578 + }, + { + "status": 0, + "executed": 1692787878 + }, + { + "status": 0, + "executed": 1692788178 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788779 + }, + { + "status": 0, + "executed": 1692789079 + }, + { + "status": 0, + "executed": 1692789379 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789679, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.300 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.300", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dcd38c94-e09f-4035-a41f-c93b4f4f6162", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3018 1081", + "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, + "duration": 0.479918309, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786226 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.3018 ingressOctets=0,egressOctets=160347196,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.3018", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d4ff8573-1117-40f5-b8a4-41123e75dfdb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3020 1080", + "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, + "duration": 0.493446502, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789568, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.3020 ingressOctets=0,egressOctets=493098120,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.3020", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0962e96c-7697-40b2-8604-e1cae235ff8b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789569 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3151 893", + "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, + "duration": 0.555647026, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.3151 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.3151", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "84a7ffde-5246-46e9-a510-f77368108e8f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3152 895", + "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, + "duration": 0.513362023, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785326 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786226 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787428 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788029 + }, + { + "status": 0, + "executed": 1692788329 + }, + { + "status": 0, + "executed": 1692788629 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789529, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.3152 ingressOctets=229753742379,egressOctets=34034458698,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.3152", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ab92018b-c583-46ee-abcc-8ad09a73d3df", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3157 518", + "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, + "duration": 0.537107421, + "executed": 1692789497, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787095 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787696 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788897 + }, + { + "status": 0, + "executed": 1692789197 + }, + { + "status": 0, + "executed": 1692789497 + } + ], + "issued": 1692789497, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.3157 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789497, + "occurrences": 5944, + "occurrences_watermark": 5944, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.3157", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e98a0c19-265a-4976-8e0e-4236a00283da", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789497 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.32 1246", + "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, + "duration": 0.555912847, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.32 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.32", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c530c9ad-c8b8-47e2-9c9d-c3b59036473a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3400 897", + "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, + "duration": 0.529333069, + "executed": 1692789680, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784576 + }, + { + "status": 0, + "executed": 1692784876 + }, + { + "status": 0, + "executed": 1692785176 + }, + { + "status": 0, + "executed": 1692785476 + }, + { + "status": 0, + "executed": 1692785777 + }, + { + "status": 0, + "executed": 1692786077 + }, + { + "status": 0, + "executed": 1692786377 + }, + { + "status": 0, + "executed": 1692786678 + }, + { + "status": 0, + "executed": 1692786977 + }, + { + "status": 0, + "executed": 1692787278 + }, + { + "status": 0, + "executed": 1692787578 + }, + { + "status": 0, + "executed": 1692787878 + }, + { + "status": 0, + "executed": 1692788178 + }, + { + "status": 0, + "executed": 1692788479 + }, + { + "status": 0, + "executed": 1692788779 + }, + { + "status": 0, + "executed": 1692789080 + }, + { + "status": 0, + "executed": 1692789380 + }, + { + "status": 0, + "executed": 1692789680 + } + ], + "issued": 1692789679, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.3400 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789680, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.3400", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "98d93434-a114-47e2-873d-e1fb06b7b325", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.350 1099", + "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, + "duration": 0.506428122, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.350 ingressOctets=4734720,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.350", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5f16cf19-cacb-4d71-8ea4-8ee51f9f1316", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.3901 1451", + "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, + "duration": 0.488417046, + "executed": 1692789591, + "history": [ + { + "status": 0, + "executed": 1692783586 + }, + { + "status": 0, + "executed": 1692783886 + }, + { + "status": 0, + "executed": 1692784186 + }, + { + "status": 0, + "executed": 1692784486 + }, + { + "status": 0, + "executed": 1692784786 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785987 + }, + { + "status": 0, + "executed": 1692786287 + }, + { + "status": 0, + "executed": 1692786588 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787488 + }, + { + "status": 0, + "executed": 1692787789 + }, + { + "status": 0, + "executed": 1692788089 + }, + { + "status": 0, + "executed": 1692788389 + }, + { + "status": 0, + "executed": 1692788690 + }, + { + "status": 0, + "executed": 1692788990 + }, + { + "status": 0, + "executed": 1692789290 + }, + { + "status": 0, + "executed": 1692789591 + } + ], + "issued": 1692789590, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.3901 ingressOctets=7314781628,egressOctets=7437417444,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789591, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.3901", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4f44a0e1-12a0-4c56-a3e5-a92a5d950e15", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789591 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.498 828", + "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, + "duration": 0.510090083, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783987 + }, + { + "status": 0, + "executed": 1692784287 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785788 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786388 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787289 + }, + { + "status": 0, + "executed": 1692787589 + }, + { + "status": 0, + "executed": 1692787889 + }, + { + "status": 0, + "executed": 1692788189 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788790 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.498 ingressOctets=4839657498067,egressOctets=1358278168595,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.498", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b2505f61-e8d0-4124-ad32-763bf10490ba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.500 858", + "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, + "duration": 0.620480551, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783990 + }, + { + "status": 0, + "executed": 1692784290 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786092 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786692 + }, + { + "status": 0, + "executed": 1692786992 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.500 ingressOctets=0,egressOctets=12651770,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.500", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e2d75e2b-9ff4-4b3c-860b-f051652e29ed", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.60 647", + "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, + "duration": 0.466332237, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786408 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787307 + }, + { + "status": 0, + "executed": 1692787607 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788808 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.60 ingressOctets=61100369703535,egressOctets=36757072218917,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.60", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ae8dc6f9-60a5-4681-b9f1-f00c5e61bb9b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.610 1071", + "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, + "duration": 0.513677055, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786407 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789108 + }, + { + "status": 0, + "executed": 1692789408 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.610 ingressOctets=6925468504,egressOctets=26227508618,ingressErrors=0,egressErrors=0,ingressOctetsv6=153791131,egressOctetsv6=22091386038,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.610", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "769aa70d-976b-4681-a738-cb98fd5d28a7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789708 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.620 1096", + "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, + "duration": 0.468203359, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787307 + }, + { + "status": 0, + "executed": 1692787607 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788808 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.620 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.620", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2d3909be-ee58-4a92-b6b4-09aa5ce3308f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.80 1392", + "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, + "duration": 0.50779575, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.80 ingressOctets=930235407970746,egressOctets=340219093397589,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.80", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "23920c16-56f5-48af-9401-b82b76ec1cf4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae15.903 1210", + "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, + "duration": 0.500540968, + "executed": 1692789705, + "history": [ + { + "status": 0, + "executed": 1692783701 + }, + { + "status": 0, + "executed": 1692784001 + }, + { + "status": 0, + "executed": 1692784301 + }, + { + "status": 0, + "executed": 1692784602 + }, + { + "status": 0, + "executed": 1692784902 + }, + { + "status": 0, + "executed": 1692785202 + }, + { + "status": 0, + "executed": 1692785502 + }, + { + "status": 0, + "executed": 1692785802 + }, + { + "status": 0, + "executed": 1692786103 + }, + { + "status": 0, + "executed": 1692786402 + }, + { + "status": 0, + "executed": 1692786703 + }, + { + "status": 0, + "executed": 1692787003 + }, + { + "status": 0, + "executed": 1692787303 + }, + { + "status": 0, + "executed": 1692787603 + }, + { + "status": 0, + "executed": 1692787903 + }, + { + "status": 0, + "executed": 1692788204 + }, + { + "status": 0, + "executed": 1692788504 + }, + { + "status": 0, + "executed": 1692788804 + }, + { + "status": 0, + "executed": 1692789105 + }, + { + "status": 0, + "executed": 1692789405 + }, + { + "status": 0, + "executed": 1692789705 + } + ], + "issued": 1692789704, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae15.903 ingressOctets=0,egressOctets=1048,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789705, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae15.903", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6df4b404-8355-44a0-94c5-211234768b0e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789705 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae16 688", + "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, + "duration": 0.510398363, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae16 ingressOctets=0,egressOctets=127324296,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "85d45bf1-c47e-4183-8dbd-392f5e49a3fd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae17 689", + "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, + "duration": 0.583217165, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae17 ingressOctets=142526267579593,egressOctets=400519621600214,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 4463, + "occurrences_watermark": 4463, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae17", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "30c097dc-40ca-4929-9d1b-23990c3b494a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae17.1 639", + "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, + "duration": 0.52559396, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783545 + }, + { + "status": 0, + "executed": 1692783845 + }, + { + "status": 0, + "executed": 1692784145 + }, + { + "status": 0, + "executed": 1692784445 + }, + { + "status": 0, + "executed": 1692784745 + }, + { + "status": 0, + "executed": 1692785046 + }, + { + "status": 0, + "executed": 1692785346 + }, + { + "status": 0, + "executed": 1692785646 + }, + { + "status": 0, + "executed": 1692785946 + }, + { + "status": 0, + "executed": 1692786247 + }, + { + "status": 0, + "executed": 1692786547 + }, + { + "status": 0, + "executed": 1692786847 + }, + { + "status": 0, + "executed": 1692787147 + }, + { + "status": 0, + "executed": 1692787447 + }, + { + "status": 0, + "executed": 1692787748 + }, + { + "status": 0, + "executed": 1692788048 + }, + { + "status": 0, + "executed": 1692788348 + }, + { + "status": 0, + "executed": 1692788648 + }, + { + "status": 0, + "executed": 1692788949 + }, + { + "status": 0, + "executed": 1692789249 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae17.1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae17.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4aea121a-9bc9-43fa-aafd-4a78daa3bc51", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae17.1074 1297", + "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, + "duration": 0.502609908, + "executed": 1692789564, + "history": [ + { + "status": 0, + "executed": 1692783559 + }, + { + "status": 0, + "executed": 1692783859 + }, + { + "status": 0, + "executed": 1692784159 + }, + { + "status": 0, + "executed": 1692784461 + }, + { + "status": 0, + "executed": 1692784760 + }, + { + "status": 0, + "executed": 1692785060 + }, + { + "status": 0, + "executed": 1692785360 + }, + { + "status": 0, + "executed": 1692785660 + }, + { + "status": 0, + "executed": 1692785961 + }, + { + "status": 0, + "executed": 1692786262 + }, + { + "status": 0, + "executed": 1692786561 + }, + { + "status": 0, + "executed": 1692786862 + }, + { + "status": 0, + "executed": 1692787162 + }, + { + "status": 0, + "executed": 1692787462 + }, + { + "status": 0, + "executed": 1692787763 + }, + { + "status": 0, + "executed": 1692788063 + }, + { + "status": 0, + "executed": 1692788363 + }, + { + "status": 0, + "executed": 1692788664 + }, + { + "status": 0, + "executed": 1692788964 + }, + { + "status": 0, + "executed": 1692789264 + }, + { + "status": 0, + "executed": 1692789564 + } + ], + "issued": 1692789564, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae17.1074 ingressOctets=139333982809553,egressOctets=393025291775376,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789564, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae17.1074", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c6c0b4b-9edc-4058-93b9-e5790cc4607a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789564 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae17.1075 1299", + "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, + "duration": 0.611511839, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae17.1075 ingressOctets=1299116318,egressOctets=2148015422,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae17.1075", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "10ccaa12-767c-4399-8246-9b8c26da80bb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae17.2128 1068", + "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, + "duration": 0.534197762, + "executed": 1692789530, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785326 + }, + { + "status": 0, + "executed": 1692785627 + }, + { + "status": 0, + "executed": 1692785927 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786528 + }, + { + "status": 0, + "executed": 1692786828 + }, + { + "status": 0, + "executed": 1692787128 + }, + { + "status": 0, + "executed": 1692787428 + }, + { + "status": 0, + "executed": 1692787729 + }, + { + "status": 0, + "executed": 1692788029 + }, + { + "status": 0, + "executed": 1692788329 + }, + { + "status": 0, + "executed": 1692788629 + }, + { + "status": 0, + "executed": 1692788930 + }, + { + "status": 0, + "executed": 1692789230 + }, + { + "status": 0, + "executed": 1692789530 + } + ], + "issued": 1692789529, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae17.2128 ingressOctets=3183587962970,egressOctets=7485802153315,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789530, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae17.2128", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0bc59ab0-130a-4852-b4b2-43c581f1355b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae17.3901 1485", + "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, + "duration": 0.544530245, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae17.3901 ingressOctets=7437863895,egressOctets=7314738334,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae17.3901", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "32290c53-7b35-40b1-bab0-6432c128ded3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae18 690", + "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, + "duration": 0.603503755, + "executed": 1692789639, + "history": [ + { + "status": 0, + "executed": 1692783634 + }, + { + "status": 0, + "executed": 1692783934 + }, + { + "status": 0, + "executed": 1692784234 + }, + { + "status": 0, + "executed": 1692784534 + }, + { + "status": 0, + "executed": 1692784835 + }, + { + "status": 0, + "executed": 1692785135 + }, + { + "status": 0, + "executed": 1692785435 + }, + { + "status": 0, + "executed": 1692785735 + }, + { + "status": 0, + "executed": 1692786036 + }, + { + "status": 0, + "executed": 1692786336 + }, + { + "status": 0, + "executed": 1692786637 + }, + { + "status": 0, + "executed": 1692786936 + }, + { + "status": 0, + "executed": 1692787236 + }, + { + "status": 0, + "executed": 1692787537 + }, + { + "status": 0, + "executed": 1692787837 + }, + { + "status": 0, + "executed": 1692788137 + }, + { + "status": 0, + "executed": 1692788438 + }, + { + "status": 0, + "executed": 1692788738 + }, + { + "status": 0, + "executed": 1692789038 + }, + { + "status": 0, + "executed": 1692789339 + }, + { + "status": 0, + "executed": 1692789639 + } + ], + "issued": 1692789638, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae18 ingressOctets=37870287299695,egressOctets=79949049422542,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789639, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae18", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b428e7ac-57cc-4bdc-b7a3-2347ad85af09", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789639 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae18.246 1325", + "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, + "duration": 0.580277618, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae18.246 ingressOctets=162258195019,egressOctets=327523632367,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae18.246", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "77f8b1a6-f827-4bb6-b568-19ed5ddcb7a1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae18.2603 749", + "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, + "duration": 0.628091964, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae18.2603 ingressOctets=11098533281542,egressOctets=21952904869207,ingressErrors=0,egressErrors=0,ingressOctetsv6=250164874108,egressOctetsv6=588010188885,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae18.2603", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7181ed48-6658-46e6-9ad6-ba32344461aa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae18.333 636", + "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, + "duration": 0.545492441, + "executed": 1692789594, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784790 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785991 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787492 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788093 + }, + { + "status": 0, + "executed": 1692788393 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789294 + }, + { + "status": 0, + "executed": 1692789594 + } + ], + "issued": 1692789594, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae18.333 ingressOctets=26608920044982,egressOctets=57668500964174,ingressErrors=0,egressErrors=0,ingressOctetsv6=1959258721105,egressOctetsv6=2785886185101,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789594, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae18.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8dae77a1-546f-4dce-bf8d-68aad8aea982", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae2 632", + "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, + "duration": 0.787662064, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae2 ingressOctets=1453463507843121,egressOctets=2202795950969080,ingressErrors=0,egressErrors=7,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "78d5b4c4-e0a1-45cf-8c78-0a773e596db2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae2.0 1255", + "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, + "duration": 0.49915326, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786408 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787307 + }, + { + "status": 0, + "executed": 1692787607 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788808 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae2.0 ingressOctets=1453491860993375,egressOctets=2202821299706862,ingressErrors=0,egressErrors=0,ingressOctetsv6=201519856941153,egressOctetsv6=819311179,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8b440b71-60ef-4561-984d-429d2d985cd5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30 702", + "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, + "duration": 0.576163454, + "executed": 1692789700, + "history": [ + { + "status": 0, + "executed": 1692783697 + }, + { + "status": 0, + "executed": 1692783997 + }, + { + "status": 0, + "executed": 1692784297 + }, + { + "status": 0, + "executed": 1692784598 + }, + { + "status": 0, + "executed": 1692784898 + }, + { + "status": 0, + "executed": 1692785198 + }, + { + "status": 0, + "executed": 1692785498 + }, + { + "status": 0, + "executed": 1692785798 + }, + { + "status": 0, + "executed": 1692786099 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692786999 + }, + { + "status": 0, + "executed": 1692787299 + }, + { + "status": 0, + "executed": 1692787599 + }, + { + "status": 0, + "executed": 1692787899 + }, + { + "status": 0, + "executed": 1692788200 + }, + { + "status": 0, + "executed": 1692788500 + }, + { + "status": 0, + "executed": 1692788800 + }, + { + "status": 0, + "executed": 1692789100 + }, + { + "status": 0, + "executed": 1692789400 + }, + { + "status": 0, + "executed": 1692789700 + } + ], + "issued": 1692789700, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30 ingressOctets=47195804610905,egressOctets=2128983910552,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789700, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "50866ea9-c899-476e-84ae-43b7d5db2c47", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.2001 964", + "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, + "duration": 0.453705435, + "executed": 1692789712, + "history": [ + { + "status": 0, + "executed": 1692783709 + }, + { + "status": 0, + "executed": 1692784009 + }, + { + "status": 0, + "executed": 1692784309 + }, + { + "status": 0, + "executed": 1692784609 + }, + { + "status": 0, + "executed": 1692784909 + }, + { + "status": 0, + "executed": 1692785209 + }, + { + "status": 0, + "executed": 1692785509 + }, + { + "status": 0, + "executed": 1692785810 + }, + { + "status": 0, + "executed": 1692786110 + }, + { + "status": 0, + "executed": 1692786411 + }, + { + "status": 0, + "executed": 1692786711 + }, + { + "status": 0, + "executed": 1692787011 + }, + { + "status": 0, + "executed": 1692787311 + }, + { + "status": 0, + "executed": 1692787611 + }, + { + "status": 0, + "executed": 1692787911 + }, + { + "status": 0, + "executed": 1692788212 + }, + { + "status": 0, + "executed": 1692788512 + }, + { + "status": 0, + "executed": 1692788812 + }, + { + "status": 0, + "executed": 1692789112 + }, + { + "status": 0, + "executed": 1692789412 + }, + { + "status": 0, + "executed": 1692789712 + } + ], + "issued": 1692789712, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.2001 ingressOctets=47116805095202,egressOctets=1773278501019,ingressErrors=0,egressErrors=0,ingressOctetsv6=3987392305044,egressOctetsv6=977514934652,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789712, + "occurrences": 58, + "occurrences_watermark": 58, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.2001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7533d666-d927-4c70-916f-5550d2a41d4f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789713 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3000 1026", + "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, + "duration": 0.539232108, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.3000 ingressOctets=66957588714,egressOctets=317749742397,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.3000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e2cacdc2-13ec-4afc-b07b-71013e678c02", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789612 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3001 846", + "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, + "duration": 0.537877505, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.3001 ingressOctets=346018688,egressOctets=504,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.3001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "06777633-0b6c-40c4-a1fa-4a4e47839739", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3002 1467", + "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, + "duration": 0.534056931, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.3002 ingressOctets=1896472718,egressOctets=155377791,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.3002", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cedd6ace-10bf-4ee7-8042-a7e322b23110", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3003 1468", + "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, + "duration": 0.524721056, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.3003 ingressOctets=1899083499,egressOctets=634551667,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.3003", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "73b9a5e1-fa09-4608-9fc2-d4c6e253b5da", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3004 1474", + "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, + "duration": 0.505858586, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.3004 ingressOctets=351297974,egressOctets=2109584359,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.3004", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5cd0e511-5e47-48ed-b1cd-23464004f4f0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3006 812", + "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, + "duration": 0.497551582, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786407 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789108 + }, + { + "status": 0, + "executed": 1692789408 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.3006 ingressOctets=356912661,egressOctets=7772623,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.3006", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cbbf3887-eca3-445f-ac3c-615db636e071", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789708 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3007 1014", + "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, + "duration": 0.542063794, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.3007 ingressOctets=8692747189,egressOctets=6850779812,ingressErrors=0,egressErrors=0,ingressOctetsv6=1690283697,egressOctetsv6=1371089227,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.3007", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4b3745c9-cb9b-4aae-89f4-4560fc7a6a08", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3008 1060", + "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, + "duration": 0.561678487, + "executed": 1692789557, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789557 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.3008 ingressOctets=73216,egressOctets=245058261,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789557, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.3008", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1ddc67aa-38b9-4e88-b48a-52506e38184f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.3015 916", + "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, + "duration": 0.508146359, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.3015 ingressOctets=249351449,egressOctets=281529331,ingressErrors=0,egressErrors=0,ingressOctetsv6=10686424,egressOctetsv6=48,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.3015", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "07a3fd1d-b410-42fa-8c41-3bde46bb1b11", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3349, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae30.991 764", + "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, + "duration": 0.548314986, + "executed": 1692789634, + "history": [ + { + "status": 0, + "executed": 1692783631 + }, + { + "status": 0, + "executed": 1692783931 + }, + { + "status": 0, + "executed": 1692784231 + }, + { + "status": 0, + "executed": 1692784531 + }, + { + "status": 0, + "executed": 1692784831 + }, + { + "status": 0, + "executed": 1692785131 + }, + { + "status": 0, + "executed": 1692785431 + }, + { + "status": 0, + "executed": 1692785731 + }, + { + "status": 0, + "executed": 1692786032 + }, + { + "status": 0, + "executed": 1692786332 + }, + { + "status": 0, + "executed": 1692786632 + }, + { + "status": 0, + "executed": 1692786932 + }, + { + "status": 0, + "executed": 1692787232 + }, + { + "status": 0, + "executed": 1692787533 + }, + { + "status": 0, + "executed": 1692787833 + }, + { + "status": 0, + "executed": 1692788133 + }, + { + "status": 0, + "executed": 1692788434 + }, + { + "status": 0, + "executed": 1692788734 + }, + { + "status": 0, + "executed": 1692789034 + }, + { + "status": 0, + "executed": 1692789335 + }, + { + "status": 0, + "executed": 1692789634 + } + ], + "issued": 1692789634, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae30.991 ingressOctets=348168949,egressOctets=25212821958,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789634, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae30.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f75133b9-7956-4c3c-bff9-1b4684f3b4e6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789635 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae31 993", + "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, + "duration": 0.551701891, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae31 ingressOctets=659651016,egressOctets=301507311,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae31", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "718dc779-36d9-403e-a241-92e0f6221335", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae31.0 994", + "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, + "duration": 0.478209381, + "executed": 1692789572, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785368 + }, + { + "status": 0, + "executed": 1692785668 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786569 + }, + { + "status": 0, + "executed": 1692786869 + }, + { + "status": 0, + "executed": 1692787169 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787770 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788671 + }, + { + "status": 0, + "executed": 1692788971 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789572 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae31.0 ingressOctets=659643092,egressOctets=297191020,ingressErrors=0,egressErrors=0,ingressOctetsv6=35195692,egressOctetsv6=1248,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789572, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae31.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "89c7f089-59fd-4131-b1de-8e9733591048", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae32 779", + "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, + "duration": 0.718104268, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783845 + }, + { + "status": 0, + "executed": 1692784145 + }, + { + "status": 0, + "executed": 1692784445 + }, + { + "status": 0, + "executed": 1692784745 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786246 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787447 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788048 + }, + { + "status": 0, + "executed": 1692788348 + }, + { + "status": 0, + "executed": 1692788648 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae32 ingressOctets=2486659301640,egressOctets=320156333912,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae32", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e29cfa9-5224-4d94-acd4-92f4fddbd987", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae32.0 809", + "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, + "duration": 0.538404958, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae32.0 ingressOctets=2486798929680,egressOctets=320354935216,ingressErrors=0,egressErrors=0,ingressOctetsv6=41768338,egressOctetsv6=1194,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae32.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "78e39294-c42d-4f75-8635-6bf45285b6d7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae33 977", + "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, + "duration": 0.642851337, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae33 ingressOctets=3882200999,egressOctets=9056382605838,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae33", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f32975e0-1434-4b6b-83ec-d4e67cc8ad1f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae33.0 1049", + "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, + "duration": 0.515568649, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae33.0 ingressOctets=3828173186,egressOctets=9055970210163,ingressErrors=0,egressErrors=0,ingressOctetsv6=388502426,egressOctetsv6=1707854088,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae33.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "11971a76-7a45-46ba-8533-a2179882b7f3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae34 979", + "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, + "duration": 0.522490186, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae34 ingressOctets=10147979890,egressOctets=9060572710368,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 5944, + "occurrences_watermark": 5944, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae34", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "94db8800-a491-458b-b902-1f3fa87db635", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae34.0 1048", + "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, + "duration": 1.037670625, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783675 + }, + { + "status": 0, + "executed": 1692783975 + }, + { + "status": 0, + "executed": 1692784275 + }, + { + "status": 0, + "executed": 1692784576 + }, + { + "status": 0, + "executed": 1692784876 + }, + { + "status": 0, + "executed": 1692785176 + }, + { + "status": 0, + "executed": 1692785476 + }, + { + "status": 0, + "executed": 1692785776 + }, + { + "status": 0, + "executed": 1692786077 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786677 + }, + { + "status": 0, + "executed": 1692786977 + }, + { + "status": 0, + "executed": 1692787277 + }, + { + "status": 0, + "executed": 1692787578 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788178 + }, + { + "status": 0, + "executed": 1692788478 + }, + { + "status": 0, + "executed": 1692788778 + }, + { + "status": 0, + "executed": 1692789079 + }, + { + "status": 0, + "executed": 1692789379 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae34.0 ingressOctets=10095046834,egressOctets=9060993134028,ingressErrors=0,egressErrors=0,ingressOctetsv6=785976867,egressOctetsv6=1645338326,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae34.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f3b7ad19-286c-4c74-ace2-8f3b2f69d6f1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae4 801", + "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, + "duration": 0.508107127, + "executed": 1692789527, + "history": [ + { + "status": 0, + "executed": 1692783522 + }, + { + "status": 0, + "executed": 1692783822 + }, + { + "status": 2, + "executed": 1692784123 + }, + { + "status": 0, + "executed": 1692784423 + }, + { + "status": 0, + "executed": 1692784723 + }, + { + "status": 0, + "executed": 1692785023 + }, + { + "status": 0, + "executed": 1692785323 + }, + { + "status": 0, + "executed": 1692785624 + }, + { + "status": 0, + "executed": 1692785924 + }, + { + "status": 0, + "executed": 1692786224 + }, + { + "status": 0, + "executed": 1692786525 + }, + { + "status": 0, + "executed": 1692786825 + }, + { + "status": 0, + "executed": 1692787125 + }, + { + "status": 0, + "executed": 1692787425 + }, + { + "status": 0, + "executed": 1692787726 + }, + { + "status": 0, + "executed": 1692788026 + }, + { + "status": 0, + "executed": 1692788326 + }, + { + "status": 0, + "executed": 1692788626 + }, + { + "status": 0, + "executed": 1692788927 + }, + { + "status": 0, + "executed": 1692789227 + }, + { + "status": 0, + "executed": 1692789527 + } + ], + "issued": 1692789526, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae4 ingressOctets=245667374992442,egressOctets=41506584251714,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 8, + "last_ok": 1692789527, + "occurrences": 18, + "occurrences_watermark": 18, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "356e57c7-fa79-4698-bece-e0bdeb2d6e9c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789527 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae4.0 803", + "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, + "duration": 0.510062692, + "executed": 1692789651, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784548 + }, + { + "status": 0, + "executed": 1692784848 + }, + { + "status": 0, + "executed": 1692785148 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785749 + }, + { + "status": 0, + "executed": 1692786049 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786649 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787250 + }, + { + "status": 0, + "executed": 1692787550 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788151 + }, + { + "status": 0, + "executed": 1692788451 + }, + { + "status": 0, + "executed": 1692788751 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789352 + }, + { + "status": 0, + "executed": 1692789651 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae4.0 ingressOctets=245671113373491,egressOctets=41506619031060,ingressErrors=0,egressErrors=0,ingressOctetsv6=12039598142427,egressOctetsv6=376514319650,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789651, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c8b88ed-7da9-42fa-9e1c-0558c0f86789", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae7 654", + "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, + "duration": 0.544294678, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785784 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786384 + }, + { + "status": 0, + "executed": 1692786685 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787285 + }, + { + "status": 0, + "executed": 1692787585 + }, + { + "status": 0, + "executed": 1692787885 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788786 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789686, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae7 ingressOctets=44853392339373846,egressOctets=28702405845455684,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6c0eb434-5571-4ec4-98f2-203e35317b21", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789687 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae7.0 1053", + "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, + "duration": 0.531513291, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783637 + }, + { + "status": 0, + "executed": 1692783937 + }, + { + "status": 0, + "executed": 1692784237 + }, + { + "status": 0, + "executed": 1692784537 + }, + { + "status": 0, + "executed": 1692784838 + }, + { + "status": 0, + "executed": 1692785138 + }, + { + "status": 0, + "executed": 1692785438 + }, + { + "status": 0, + "executed": 1692785739 + }, + { + "status": 0, + "executed": 1692786039 + }, + { + "status": 0, + "executed": 1692786339 + }, + { + "status": 0, + "executed": 1692786640 + }, + { + "status": 0, + "executed": 1692786940 + }, + { + "status": 0, + "executed": 1692787240 + }, + { + "status": 0, + "executed": 1692787540 + }, + { + "status": 0, + "executed": 1692787841 + }, + { + "status": 0, + "executed": 1692788141 + }, + { + "status": 0, + "executed": 1692788442 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789343 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae7.0 ingressOctets=44853138031896119,egressOctets=28701989704783846,ingressErrors=0,egressErrors=0,ingressOctetsv6=1758088952712607,egressOctetsv6=3487333283154017,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0cf2307f-3f7f-44b7-84c8-ae8a4fd20d42", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae8 666", + "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, + "duration": 0.548577801, + "executed": 1692789440, + "history": [ + { + "status": 0, + "executed": 1692783436 + }, + { + "status": 0, + "executed": 1692783736 + }, + { + "status": 0, + "executed": 1692784036 + }, + { + "status": 0, + "executed": 1692784336 + }, + { + "status": 0, + "executed": 1692784636 + }, + { + "status": 0, + "executed": 1692784937 + }, + { + "status": 0, + "executed": 1692785237 + }, + { + "status": 0, + "executed": 1692785537 + }, + { + "status": 0, + "executed": 1692785837 + }, + { + "status": 0, + "executed": 1692786138 + }, + { + "status": 0, + "executed": 1692786438 + }, + { + "status": 0, + "executed": 1692786738 + }, + { + "status": 0, + "executed": 1692787038 + }, + { + "status": 0, + "executed": 1692787339 + }, + { + "status": 0, + "executed": 1692787639 + }, + { + "status": 0, + "executed": 1692787939 + }, + { + "status": 0, + "executed": 1692788239 + }, + { + "status": 0, + "executed": 1692788539 + }, + { + "status": 0, + "executed": 1692788840 + }, + { + "status": 0, + "executed": 1692789140 + }, + { + "status": 0, + "executed": 1692789440 + } + ], + "issued": 1692789440, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae8 ingressOctets=27010045474372505,egressOctets=41137460231174064,ingressErrors=52,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789440, + "occurrences": 8009, + "occurrences_watermark": 8009, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8f5b3137-9197-4709-8d70-7a42ca8546f9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789440 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ae8.0 838", + "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, + "duration": 0.483742856, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ae8.0 ingressOctets=27011028012922653,egressOctets=41137942286819753,ingressErrors=0,egressErrors=0,ingressOctetsv6=2208814407687306,egressOctetsv6=5837450088200,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ae8.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "74444fe3-0ad5-474d-9b83-1cbf8a11c543", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789531 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net dsc.0 841", + "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, + "duration": 0.516865104, + "executed": 1692789651, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784847 + }, + { + "status": 0, + "executed": 1692785147 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785748 + }, + { + "status": 0, + "executed": 1692786048 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786649 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787249 + }, + { + "status": 0, + "executed": 1692787549 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788150 + }, + { + "status": 0, + "executed": 1692788450 + }, + { + "status": 0, + "executed": 1692788750 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789351 + }, + { + "status": 0, + "executed": 1692789651 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=dsc.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789651, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-dsc.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "03763ac1-1027-4a14-b618-e312808849ff", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-1/0/2 1149", + "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, + "duration": 0.530807053, + "executed": 1692789644, + "history": [ + { + "status": 0, + "executed": 1692783639 + }, + { + "status": 0, + "executed": 1692783939 + }, + { + "status": 0, + "executed": 1692784239 + }, + { + "status": 0, + "executed": 1692784539 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785440 + }, + { + "status": 0, + "executed": 1692785740 + }, + { + "status": 0, + "executed": 1692786040 + }, + { + "status": 0, + "executed": 1692786341 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786940 + }, + { + "status": 0, + "executed": 1692787241 + }, + { + "status": 0, + "executed": 1692787541 + }, + { + "status": 0, + "executed": 1692787842 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788442 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789644 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-1/0/2 ingressOctets=216691372110306,egressOctets=145585797124929,ingressErrors=0,egressErrors=1,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789644, + "occurrences": 33, + "occurrences_watermark": 33, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-1-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "457a3c2f-26ff-4ea3-96da-5a3e56d4f24b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-1/0/5 1150", + "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, + "duration": 0.487812596, + "executed": 1692789651, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784847 + }, + { + "status": 0, + "executed": 1692785147 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785748 + }, + { + "status": 0, + "executed": 1692786048 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786649 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787249 + }, + { + "status": 0, + "executed": 1692787549 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788150 + }, + { + "status": 0, + "executed": 1692788450 + }, + { + "status": 0, + "executed": 1692788750 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789351 + }, + { + "status": 0, + "executed": 1692789651 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-1/0/5 ingressOctets=9509828235162205,egressOctets=10934621936873596,ingressErrors=765,egressErrors=30,ingressDiscards=0,egressDiscards=3184867\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789651, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-1-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9d44d9c2-05d5-4573-bfdc-949ca6b59584", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-1/1/2 1151", + "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, + "duration": 0.5239271, + "executed": 1692789672, + "history": [ + { + "status": 0, + "executed": 1692783668 + }, + { + "status": 0, + "executed": 1692783968 + }, + { + "status": 0, + "executed": 1692784268 + }, + { + "status": 0, + "executed": 1692784569 + }, + { + "status": 0, + "executed": 1692784869 + }, + { + "status": 0, + "executed": 1692785169 + }, + { + "status": 0, + "executed": 1692785469 + }, + { + "status": 0, + "executed": 1692785769 + }, + { + "status": 0, + "executed": 1692786069 + }, + { + "status": 0, + "executed": 1692786370 + }, + { + "status": 0, + "executed": 1692786670 + }, + { + "status": 0, + "executed": 1692786970 + }, + { + "status": 0, + "executed": 1692787270 + }, + { + "status": 0, + "executed": 1692787571 + }, + { + "status": 0, + "executed": 1692787871 + }, + { + "status": 0, + "executed": 1692788171 + }, + { + "status": 0, + "executed": 1692788471 + }, + { + "status": 0, + "executed": 1692788771 + }, + { + "status": 0, + "executed": 1692789072 + }, + { + "status": 0, + "executed": 1692789372 + }, + { + "status": 0, + "executed": 1692789672 + } + ], + "issued": 1692789672, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-1/1/2 ingressOctets=1333273693717573,egressOctets=2210930518766881,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789672, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-1-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a65fb8c6-9b13-4f93-a2f6-f80654d684ba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789673 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-1/1/5 1152", + "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, + "duration": 0.521736277, + "executed": 1692789575, + "history": [ + { + "status": 0, + "executed": 1692783572 + }, + { + "status": 0, + "executed": 1692783872 + }, + { + "status": 0, + "executed": 1692784172 + }, + { + "status": 0, + "executed": 1692784472 + }, + { + "status": 0, + "executed": 1692784772 + }, + { + "status": 0, + "executed": 1692785072 + }, + { + "status": 0, + "executed": 1692785372 + }, + { + "status": 0, + "executed": 1692785672 + }, + { + "status": 0, + "executed": 1692785973 + }, + { + "status": 0, + "executed": 1692786273 + }, + { + "status": 0, + "executed": 1692786573 + }, + { + "status": 0, + "executed": 1692786873 + }, + { + "status": 0, + "executed": 1692787173 + }, + { + "status": 0, + "executed": 1692787474 + }, + { + "status": 0, + "executed": 1692787774 + }, + { + "status": 0, + "executed": 1692788075 + }, + { + "status": 0, + "executed": 1692788375 + }, + { + "status": 0, + "executed": 1692788675 + }, + { + "status": 0, + "executed": 1692788975 + }, + { + "status": 0, + "executed": 1692789276 + }, + { + "status": 0, + "executed": 1692789575 + } + ], + "issued": 1692789575, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-1/1/5 ingressOctets=1318994393354899,egressOctets=2170658590433421,ingressErrors=74,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789575, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-1-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "16b1adc4-db06-43ee-b87e-97d1ff043e7b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789576 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-10/0/2 997", + "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, + "duration": 0.568473277, + "executed": 1692789632, + "history": [ + { + "status": 0, + "executed": 1692783628 + }, + { + "status": 0, + "executed": 1692783928 + }, + { + "status": 0, + "executed": 1692784228 + }, + { + "status": 0, + "executed": 1692784528 + }, + { + "status": 0, + "executed": 1692784828 + }, + { + "status": 0, + "executed": 1692785128 + }, + { + "status": 0, + "executed": 1692785428 + }, + { + "status": 0, + "executed": 1692785728 + }, + { + "status": 0, + "executed": 1692786029 + }, + { + "status": 0, + "executed": 1692786329 + }, + { + "status": 0, + "executed": 1692786630 + }, + { + "status": 0, + "executed": 1692786929 + }, + { + "status": 0, + "executed": 1692787229 + }, + { + "status": 0, + "executed": 1692787530 + }, + { + "status": 0, + "executed": 1692787830 + }, + { + "status": 0, + "executed": 1692788130 + }, + { + "status": 0, + "executed": 1692788431 + }, + { + "status": 0, + "executed": 1692788731 + }, + { + "status": 0, + "executed": 1692789031 + }, + { + "status": 0, + "executed": 1692789332 + }, + { + "status": 0, + "executed": 1692789632 + } + ], + "issued": 1692789631, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-10/0/2 ingressOctets=216911818192390,egressOctets=143395985256588,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789632, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-10-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e6853347-503f-4ab1-b3bf-8c17c0c0cfb7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789632 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-10/0/5 1001", + "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, + "duration": 0.493273922, + "executed": 1692789571, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789571 + } + ], + "issued": 1692789571, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-10/0/5 ingressOctets=142526379464750,egressOctets=400521236722031,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789571, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-10-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ee700700-b70d-4705-82b9-33d3e5500bdc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789572 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-10/1/2 1002", + "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, + "duration": 0.47672082, + "executed": 1692789615, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786313 + }, + { + "status": 0, + "executed": 1692786612 + }, + { + "status": 0, + "executed": 1692786913 + }, + { + "status": 0, + "executed": 1692787213 + }, + { + "status": 0, + "executed": 1692787514 + }, + { + "status": 0, + "executed": 1692787814 + }, + { + "status": 0, + "executed": 1692788115 + }, + { + "status": 0, + "executed": 1692788414 + }, + { + "status": 0, + "executed": 1692788715 + }, + { + "status": 0, + "executed": 1692789015 + }, + { + "status": 0, + "executed": 1692789315 + }, + { + "status": 0, + "executed": 1692789615 + } + ], + "issued": 1692789615, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-10/1/2 ingressOctets=122903014276946,egressOctets=20387175868841,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789615, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-10-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b7422daf-696b-43cd-bb75-b08e6710905d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789616 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-10/1/5 1003", + "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, + "duration": 0.457782039, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785363 + }, + { + "status": 0, + "executed": 1692785663 + }, + { + "status": 0, + "executed": 1692785963 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786864 + }, + { + "status": 0, + "executed": 1692787164 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787765 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788666 + }, + { + "status": 0, + "executed": 1692788966 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789566, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-10/1/5 ingressOctets=122766249840316,egressOctets=21119495818295,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-10-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "009f14b3-bfa1-4330-93fb-69b61f864052", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-11/1/0 1198", + "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, + "duration": 0.531448066, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785408 + }, + { + "status": 0, + "executed": 1692785708 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786909 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787810 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788711 + }, + { + "status": 0, + "executed": 1692789011 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-11/1/0 ingressOctets=37814970384530,egressOctets=79776433955649,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-11-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4fa72791-c80c-410f-95a0-931d9f41af9f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789612 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-11/3/0 1203", + "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, + "duration": 0.521967617, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-11/3/0 ingressOctets=8816100692203,egressOctets=1544978864869,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-11-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ed6a71d7-5e16-49b4-9580-89930e25e86b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-11/3/0.100 633", + "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, + "duration": 0.458221657, + "executed": 1692789709, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786408 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787307 + }, + { + "status": 0, + "executed": 1692787607 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788808 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789709 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-11/3/0.100 ingressOctets=8816100513815,egressOctets=1544924191116,ingressErrors=0,egressErrors=0,ingressOctetsv6=1624,egressOctetsv6=20460,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789709, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-11-3-0.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d2d64329-d5c2-47c9-af01-cd48b12c03e8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-3/1/0 842", + "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, + "duration": 0.630266897, + "executed": 1692789617, + "history": [ + { + "status": 0, + "executed": 1692783613 + }, + { + "status": 0, + "executed": 1692783913 + }, + { + "status": 0, + "executed": 1692784213 + }, + { + "status": 0, + "executed": 1692784513 + }, + { + "status": 0, + "executed": 1692784813 + }, + { + "status": 0, + "executed": 1692785113 + }, + { + "status": 0, + "executed": 1692785413 + }, + { + "status": 0, + "executed": 1692785713 + }, + { + "status": 0, + "executed": 1692786014 + }, + { + "status": 0, + "executed": 1692786315 + }, + { + "status": 0, + "executed": 1692786614 + }, + { + "status": 0, + "executed": 1692786915 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787816 + }, + { + "status": 0, + "executed": 1692788117 + }, + { + "status": 0, + "executed": 1692788417 + }, + { + "status": 0, + "executed": 1692788717 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789318 + }, + { + "status": 0, + "executed": 1692789617 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-3/1/0 ingressOctets=3822584808283719,egressOctets=3041235597016900,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789617, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-3-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5c690844-d8e9-4706-a2d6-a1e7d3312b66", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789618 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-3/1/1 844", + "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, + "duration": 0.688238956, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783428 + }, + { + "status": 0, + "executed": 1692783728 + }, + { + "status": 0, + "executed": 1692784029 + }, + { + "status": 0, + "executed": 1692784329 + }, + { + "status": 0, + "executed": 1692784629 + }, + { + "status": 0, + "executed": 1692784929 + }, + { + "status": 0, + "executed": 1692785229 + }, + { + "status": 0, + "executed": 1692785529 + }, + { + "status": 0, + "executed": 1692785830 + }, + { + "status": 0, + "executed": 1692786130 + }, + { + "status": 0, + "executed": 1692786431 + }, + { + "status": 0, + "executed": 1692786731 + }, + { + "status": 0, + "executed": 1692787031 + }, + { + "status": 0, + "executed": 1692787331 + }, + { + "status": 0, + "executed": 1692787631 + }, + { + "status": 0, + "executed": 1692787932 + }, + { + "status": 0, + "executed": 1692788232 + }, + { + "status": 0, + "executed": 1692788532 + }, + { + "status": 0, + "executed": 1692788832 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-3/1/1 ingressOctets=1276568140347316,egressOctets=1899651531146831,ingressErrors=0,egressErrors=6,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 8009, + "occurrences_watermark": 8009, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-3-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "24f6bda1-1827-4485-a949-37b0ab152737", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789434 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-8/0/4 958", + "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, + "duration": 0.542610456, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-8/0/4 ingressOctets=22496019514762190,egressOctets=14232799715069989,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 4449, + "occurrences_watermark": 4449, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-8-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d321d861-9b3d-4d70-bd6f-d81eef668ae1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789628 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-8/1/4 971", + "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, + "duration": 0.592197454, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-8/1/4 ingressOctets=22356941085205310,egressOctets=14468903602069460,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-8-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7bb38e81-162a-4aa9-b819-6d6df44e5f5d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789601 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-9/0/4 760", + "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, + "duration": 0.590538573, + "executed": 1692789711, + "history": [ + { + "status": 0, + "executed": 1692783707 + }, + { + "status": 0, + "executed": 1692784008 + }, + { + "status": 0, + "executed": 1692784308 + }, + { + "status": 0, + "executed": 1692784608 + }, + { + "status": 0, + "executed": 1692784908 + }, + { + "status": 0, + "executed": 1692785208 + }, + { + "status": 0, + "executed": 1692785508 + }, + { + "status": 0, + "executed": 1692785809 + }, + { + "status": 0, + "executed": 1692786109 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786710 + }, + { + "status": 0, + "executed": 1692787010 + }, + { + "status": 0, + "executed": 1692787310 + }, + { + "status": 0, + "executed": 1692787610 + }, + { + "status": 0, + "executed": 1692787910 + }, + { + "status": 0, + "executed": 1692788211 + }, + { + "status": 0, + "executed": 1692788511 + }, + { + "status": 0, + "executed": 1692788811 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789711 + } + ], + "issued": 1692789711, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-9/0/4 ingressOctets=13516165248778645,egressOctets=20552573761654408,ingressErrors=30,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789711, + "occurrences": 59, + "occurrences_watermark": 59, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-9-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "feea1141-b58a-489a-a688-89a1932b1d91", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789712 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net et-9/1/4 887", + "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, + "duration": 0.493275417, + "executed": 1692789511, + "history": [ + { + "status": 0, + "executed": 1692783507 + }, + { + "status": 0, + "executed": 1692783807 + }, + { + "status": 0, + "executed": 1692784107 + }, + { + "status": 0, + "executed": 1692784407 + }, + { + "status": 0, + "executed": 1692784707 + }, + { + "status": 0, + "executed": 1692785008 + }, + { + "status": 0, + "executed": 1692785308 + }, + { + "status": 0, + "executed": 1692785608 + }, + { + "status": 0, + "executed": 1692785908 + }, + { + "status": 0, + "executed": 1692786208 + }, + { + "status": 0, + "executed": 1692786509 + }, + { + "status": 0, + "executed": 1692786809 + }, + { + "status": 0, + "executed": 1692787109 + }, + { + "status": 0, + "executed": 1692787409 + }, + { + "status": 0, + "executed": 1692787710 + }, + { + "status": 0, + "executed": 1692788010 + }, + { + "status": 0, + "executed": 1692788310 + }, + { + "status": 0, + "executed": 1692788610 + }, + { + "status": 0, + "executed": 1692788911 + }, + { + "status": 0, + "executed": 1692789211 + }, + { + "status": 0, + "executed": 1692789511 + } + ], + "issued": 1692789510, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=et-9/1/4 ingressOctets=13495716310333055,egressOctets=20585806670057780,ingressErrors=22,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789511, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-et-9-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b38ac379-9bf1-49f1-b36b-4f015edd1b6d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789511 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0 592", + "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, + "duration": 0.56317611, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783490 + }, + { + "status": 0, + "executed": 1692783790 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784991 + }, + { + "status": 0, + "executed": 1692785291 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787393 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788294 + }, + { + "status": 0, + "executed": 1692788594 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789494, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0 ingressOctets=3203761767290,egressOctets=1329524821380,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2cb9849f-baeb-4b48-a245-a1e7dfc6a826", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.10 1076", + "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, + "duration": 0.527354785, + "executed": 1692789553, + "history": [ + { + "status": 0, + "executed": 1692783548 + }, + { + "status": 0, + "executed": 1692783849 + }, + { + "status": 0, + "executed": 1692784149 + }, + { + "status": 0, + "executed": 1692784449 + }, + { + "status": 0, + "executed": 1692784749 + }, + { + "status": 0, + "executed": 1692785049 + }, + { + "status": 0, + "executed": 1692785349 + }, + { + "status": 0, + "executed": 1692785649 + }, + { + "status": 0, + "executed": 1692785949 + }, + { + "status": 0, + "executed": 1692786249 + }, + { + "status": 0, + "executed": 1692786550 + }, + { + "status": 0, + "executed": 1692786850 + }, + { + "status": 0, + "executed": 1692787150 + }, + { + "status": 0, + "executed": 1692787451 + }, + { + "status": 0, + "executed": 1692787751 + }, + { + "status": 0, + "executed": 1692788052 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788953 + }, + { + "status": 0, + "executed": 1692789253 + }, + { + "status": 0, + "executed": 1692789553 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.10 ingressOctets=3078358345904,egressOctets=15877345926,ingressErrors=0,egressErrors=0,ingressOctetsv6=24919608573,egressOctetsv6=5781213251,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789553, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0072a08d-17e6-4ee8-9dce-1efe9727b548", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.100 864", + "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, + "duration": 0.535923566, + "executed": 1692789629, + "history": [ + { + "status": 0, + "executed": 1692783625 + }, + { + "status": 0, + "executed": 1692783925 + }, + { + "status": 0, + "executed": 1692784225 + }, + { + "status": 0, + "executed": 1692784525 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786626 + }, + { + "status": 0, + "executed": 1692786926 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787527 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788428 + }, + { + "status": 0, + "executed": 1692788728 + }, + { + "status": 0, + "executed": 1692789028 + }, + { + "status": 0, + "executed": 1692789329 + }, + { + "status": 0, + "executed": 1692789629 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.100 ingressOctets=160296740,egressOctets=54955084,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789629, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7e53edd8-f1bc-4dd9-8c24-df10ea437020", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789629 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.101 865", + "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, + "duration": 0.536263789, + "executed": 1692789540, + "history": [ + { + "status": 0, + "executed": 1692783536 + }, + { + "status": 0, + "executed": 1692783837 + }, + { + "status": 0, + "executed": 1692784137 + }, + { + "status": 0, + "executed": 1692784437 + }, + { + "status": 0, + "executed": 1692784737 + }, + { + "status": 0, + "executed": 1692785037 + }, + { + "status": 0, + "executed": 1692785337 + }, + { + "status": 0, + "executed": 1692785637 + }, + { + "status": 0, + "executed": 1692785937 + }, + { + "status": 0, + "executed": 1692786237 + }, + { + "status": 0, + "executed": 1692786538 + }, + { + "status": 0, + "executed": 1692786838 + }, + { + "status": 0, + "executed": 1692787138 + }, + { + "status": 0, + "executed": 1692787439 + }, + { + "status": 0, + "executed": 1692787739 + }, + { + "status": 0, + "executed": 1692788040 + }, + { + "status": 0, + "executed": 1692788340 + }, + { + "status": 0, + "executed": 1692788640 + }, + { + "status": 0, + "executed": 1692788940 + }, + { + "status": 0, + "executed": 1692789240 + }, + { + "status": 0, + "executed": 1692789540 + } + ], + "issued": 1692789540, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.101 ingressOctets=160293748,egressOctets=79770864,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789540, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.101", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "225f06c7-072e-474c-93ae-8b3e2fe56dfe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789541 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.103 905", + "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, + "duration": 0.516490479, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783553 + }, + { + "status": 0, + "executed": 1692783853 + }, + { + "status": 0, + "executed": 1692784153 + }, + { + "status": 0, + "executed": 1692784453 + }, + { + "status": 0, + "executed": 1692784753 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786254 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787455 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788056 + }, + { + "status": 0, + "executed": 1692788356 + }, + { + "status": 0, + "executed": 1692788656 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.103 ingressOctets=160294292,egressOctets=18883230,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7d0553e5-8037-4af6-b2df-00fb0e42dbce", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.104 913", + "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, + "duration": 0.492506425, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.104 ingressOctets=160293952,egressOctets=121356896,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.104", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bf03cfb3-14b5-4bd4-b188-3e49dad5253b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.11 1077", + "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, + "duration": 0.521869571, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.11 ingressOctets=106653446352,egressOctets=1227889358050,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a88757ad-d7be-4e1f-bd8e-b222fca66539", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.20 1041", + "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, + "duration": 0.506210629, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783851 + }, + { + "status": 0, + "executed": 1692784151 + }, + { + "status": 0, + "executed": 1692784451 + }, + { + "status": 0, + "executed": 1692784751 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787453 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788054 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788654 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789554, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.20 ingressOctets=327300486,egressOctets=175209805,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.20", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "69efb85b-0ba1-4418-a7fb-467c45685b2f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789555 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.22 816", + "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, + "duration": 0.535567676, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.22 ingressOctets=160293952,egressOctets=4239024,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7d0e1af4-4687-4bce-ac58-eb72dd35db58", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.23 718", + "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, + "duration": 0.518124702, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783573 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.23 ingressOctets=278284644,egressOctets=59953439,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.23", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e4f1e831-fc27-4d29-acd5-923b35374508", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.24 745", + "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, + "duration": 0.535325209, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787457 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788058 + }, + { + "status": 0, + "executed": 1692788358 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789259 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.24 ingressOctets=160294428,egressOctets=4239635,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.24", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b73bce76-5722-47cf-8eae-7e6c6f37b760", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.25 614", + "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, + "duration": 0.520542086, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785956 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.25 ingressOctets=333901876,egressOctets=176261660,ingressErrors=0,egressErrors=0,ingressOctetsv6=17172077,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.25", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1722659f-a6be-4417-881c-f19608834a12", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.250 527", + "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, + "duration": 0.513540405, + "executed": 1692789581, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786578 + }, + { + "status": 0, + "executed": 1692786878 + }, + { + "status": 0, + "executed": 1692787178 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787779 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788680 + }, + { + "status": 0, + "executed": 1692788980 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789581 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.250 ingressOctets=1054506824,egressOctets=182227913,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789581, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.250", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "85abf26c-f2eb-41e3-82c1-3d138f833300", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.26 974", + "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, + "duration": 0.527917227, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.26 ingressOctets=197199791,egressOctets=39325653,ingressErrors=0,egressErrors=0,ingressOctetsv6=237897,egressOctetsv6=120862,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.26", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a9d0e650-d716-40b5-99a8-0a24178b7b24", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.27 975", + "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, + "duration": 0.477807758, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.27 ingressOctets=650109581,egressOctets=493194825,ingressErrors=0,egressErrors=0,ingressOctetsv6=450109557,egressOctetsv6=449992522,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.27", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3be548e5-8ec6-4dbd-8b89-5ba1b9b87e02", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.300 1243", + "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, + "duration": 0.504791957, + "executed": 1692789569, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785365 + }, + { + "status": 0, + "executed": 1692785665 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786566 + }, + { + "status": 0, + "executed": 1692786866 + }, + { + "status": 0, + "executed": 1692787166 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787767 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788668 + }, + { + "status": 0, + "executed": 1692788968 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789569 + } + ], + "issued": 1692789568, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.300 ingressOctets=309528413,egressOctets=329597736,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789569, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.300", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4b85815b-2c38-4238-8b02-41e46fdc7f71", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789569 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.40 716", + "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, + "duration": 0.505838011, + "executed": 1692789629, + "history": [ + { + "status": 0, + "executed": 1692783625 + }, + { + "status": 0, + "executed": 1692783925 + }, + { + "status": 0, + "executed": 1692784225 + }, + { + "status": 0, + "executed": 1692784525 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786627 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789629 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.40 ingressOctets=160296808,egressOctets=35189462,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789629, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.40", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "15cca054-6db1-45e1-bf6b-89ddda6e938a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.550 834", + "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, + "duration": 0.50906585, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.550 ingressOctets=0,egressOctets=461258588,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.550", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e41d4fea-c15d-41af-9d66-69965b94df40", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.9 1078", + "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, + "duration": 0.588788323, + "executed": 1692789622, + "history": [ + { + "status": 0, + "executed": 1692783616 + }, + { + "status": 0, + "executed": 1692783916 + }, + { + "status": 0, + "executed": 1692784216 + }, + { + "status": 0, + "executed": 1692784516 + }, + { + "status": 0, + "executed": 1692784817 + }, + { + "status": 0, + "executed": 1692785117 + }, + { + "status": 0, + "executed": 1692785417 + }, + { + "status": 0, + "executed": 1692785717 + }, + { + "status": 0, + "executed": 1692786019 + }, + { + "status": 0, + "executed": 1692786319 + }, + { + "status": 0, + "executed": 1692786620 + }, + { + "status": 0, + "executed": 1692786919 + }, + { + "status": 0, + "executed": 1692787219 + }, + { + "status": 0, + "executed": 1692787520 + }, + { + "status": 0, + "executed": 1692787820 + }, + { + "status": 0, + "executed": 1692788121 + }, + { + "status": 0, + "executed": 1692788421 + }, + { + "status": 0, + "executed": 1692788721 + }, + { + "status": 0, + "executed": 1692789021 + }, + { + "status": 0, + "executed": 1692789322 + }, + { + "status": 0, + "executed": 1692789622 + } + ], + "issued": 1692789622, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.9 ingressOctets=215402153,egressOctets=51397655,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789622, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "27529056-2662-42ba-b357-e21aea833617", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789623 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/0.991 1079", + "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, + "duration": 0.592852033, + "executed": 1692789627, + "history": [ + { + "status": 0, + "executed": 1692783623 + }, + { + "status": 0, + "executed": 1692783923 + }, + { + "status": 0, + "executed": 1692784223 + }, + { + "status": 0, + "executed": 1692784523 + }, + { + "status": 0, + "executed": 1692784823 + }, + { + "status": 0, + "executed": 1692785123 + }, + { + "status": 0, + "executed": 1692785424 + }, + { + "status": 0, + "executed": 1692785724 + }, + { + "status": 0, + "executed": 1692786025 + }, + { + "status": 0, + "executed": 1692786325 + }, + { + "status": 0, + "executed": 1692786625 + }, + { + "status": 0, + "executed": 1692786925 + }, + { + "status": 0, + "executed": 1692787225 + }, + { + "status": 0, + "executed": 1692787526 + }, + { + "status": 0, + "executed": 1692787826 + }, + { + "status": 0, + "executed": 1692788126 + }, + { + "status": 0, + "executed": 1692788426 + }, + { + "status": 0, + "executed": 1692788726 + }, + { + "status": 0, + "executed": 1692789027 + }, + { + "status": 0, + "executed": 1692789327 + }, + { + "status": 0, + "executed": 1692789627 + } + ], + "issued": 1692789627, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/0.991 ingressOctets=14121869778,egressOctets=83138183460,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789627, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-0.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "98217dce-daf9-4dbb-a491-c5f23d2dd392", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789627 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/1 593", + "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, + "duration": 0.530653309, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787800 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788401 + }, + { + "status": 0, + "executed": 1692788701 + }, + { + "status": 0, + "executed": 1692789001 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/1 ingressOctets=745762016,egressOctets=125545403,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f9d975bc-8140-443a-917b-a355bb6b3cab", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/2 594", + "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, + "duration": 0.475810575, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "34a643d8-d329-4387-bedd-d33e702f7bca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/3 595", + "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, + "duration": 0.55772509, + "executed": 1692789613, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784809 + }, + { + "status": 0, + "executed": 1692785109 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789613 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/3 ingressOctets=1856702972,egressOctets=299421953,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789613, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bbeadf94-35f8-43bf-8864-10542a831cbe", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/3.0 1207", + "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, + "duration": 0.507371021, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/3.0 ingressOctets=1856660779,egressOctets=309595293,ingressErrors=0,egressErrors=0,ingressOctetsv6=43815822,egressOctetsv6=17060343,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "21fc817c-6b19-4158-b617-b1ca6f8f1c2a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/4 596", + "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, + "duration": 0.530056044, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "73714ed0-c8d1-484e-9319-011508980d19", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/5 597", + "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, + "duration": 0.540045025, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/5 ingressOctets=73996659,egressOctets=144801508,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "efa0d017-ea12-4338-bea4-5105cb01c24f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/5.0 1204", + "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, + "duration": 0.614543317, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/5.0 ingressOctets=73997271,egressOctets=154989651,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9b420703-c930-4522-9f53-696b63273eb6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/6 598", + "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, + "duration": 0.542269098, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/6 ingressOctets=2120077352,egressOctets=42713390170,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 5944, + "occurrences_watermark": 5944, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "be8b140d-db96-4ff3-aab1-00b9e22fc459", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789487 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/7 599", + "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, + "duration": 0.522144243, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783987 + }, + { + "status": 0, + "executed": 1692784287 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785788 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786388 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787289 + }, + { + "status": 0, + "executed": 1692787589 + }, + { + "status": 0, + "executed": 1692787889 + }, + { + "status": 0, + "executed": 1692788189 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788790 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/7 ingressOctets=62304770,egressOctets=61271248,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "10e45f81-4d8e-4bb2-9519-7a374857959b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/8 600", + "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, + "duration": 0.577052011, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "01c91ebe-8d99-45a0-9eea-d7c3554a3bbf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/2/9 601", + "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, + "duration": 0.517386073, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785336 + }, + { + "status": 0, + "executed": 1692785636 + }, + { + "status": 0, + "executed": 1692785936 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786537 + }, + { + "status": 0, + "executed": 1692786837 + }, + { + "status": 0, + "executed": 1692787137 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787738 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789239 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "615fb5f2-0379-46c6-950f-773faeafce24", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/0 602", + "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, + "duration": 0.469938491, + "executed": 1692789665, + "history": [ + { + "status": 0, + "executed": 1692783662 + }, + { + "status": 0, + "executed": 1692783962 + }, + { + "status": 0, + "executed": 1692784262 + }, + { + "status": 0, + "executed": 1692784562 + }, + { + "status": 0, + "executed": 1692784862 + }, + { + "status": 0, + "executed": 1692785162 + }, + { + "status": 0, + "executed": 1692785462 + }, + { + "status": 0, + "executed": 1692785763 + }, + { + "status": 0, + "executed": 1692786063 + }, + { + "status": 0, + "executed": 1692786363 + }, + { + "status": 0, + "executed": 1692786663 + }, + { + "status": 0, + "executed": 1692786963 + }, + { + "status": 0, + "executed": 1692787264 + }, + { + "status": 0, + "executed": 1692787564 + }, + { + "status": 0, + "executed": 1692787864 + }, + { + "status": 0, + "executed": 1692788164 + }, + { + "status": 0, + "executed": 1692788465 + }, + { + "status": 0, + "executed": 1692788765 + }, + { + "status": 0, + "executed": 1692789065 + }, + { + "status": 0, + "executed": 1692789366 + }, + { + "status": 0, + "executed": 1692789665 + } + ], + "issued": 1692789665, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/0 ingressOctets=0,egressOctets=68108257,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789665, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1e143a3c-0b6f-42c4-93de-de61436ae888", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789666 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/1 603", + "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, + "duration": 0.498744136, + "executed": 1692789573, + "history": [ + { + "status": 0, + "executed": 1692783570 + }, + { + "status": 0, + "executed": 1692783870 + }, + { + "status": 0, + "executed": 1692784170 + }, + { + "status": 0, + "executed": 1692784470 + }, + { + "status": 0, + "executed": 1692784770 + }, + { + "status": 0, + "executed": 1692785070 + }, + { + "status": 0, + "executed": 1692785370 + }, + { + "status": 0, + "executed": 1692785670 + }, + { + "status": 0, + "executed": 1692785971 + }, + { + "status": 0, + "executed": 1692786271 + }, + { + "status": 0, + "executed": 1692786571 + }, + { + "status": 0, + "executed": 1692786871 + }, + { + "status": 0, + "executed": 1692787171 + }, + { + "status": 0, + "executed": 1692787472 + }, + { + "status": 0, + "executed": 1692787772 + }, + { + "status": 0, + "executed": 1692788073 + }, + { + "status": 0, + "executed": 1692788373 + }, + { + "status": 0, + "executed": 1692788673 + }, + { + "status": 0, + "executed": 1692788973 + }, + { + "status": 0, + "executed": 1692789274 + }, + { + "status": 0, + "executed": 1692789573 + } + ], + "issued": 1692789573, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789573, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7ca393a2-98b0-4bda-993f-4919a867d78b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789574 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/2 604", + "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, + "duration": 0.611823117, + "executed": 1692789433, + "history": [ + { + "status": 0, + "executed": 1692783428 + }, + { + "status": 0, + "executed": 1692783728 + }, + { + "status": 0, + "executed": 1692784028 + }, + { + "status": 0, + "executed": 1692784328 + }, + { + "status": 0, + "executed": 1692784629 + }, + { + "status": 0, + "executed": 1692784929 + }, + { + "status": 0, + "executed": 1692785229 + }, + { + "status": 0, + "executed": 1692785529 + }, + { + "status": 0, + "executed": 1692785829 + }, + { + "status": 0, + "executed": 1692786130 + }, + { + "status": 0, + "executed": 1692786430 + }, + { + "status": 0, + "executed": 1692786730 + }, + { + "status": 0, + "executed": 1692787030 + }, + { + "status": 0, + "executed": 1692787331 + }, + { + "status": 0, + "executed": 1692787631 + }, + { + "status": 0, + "executed": 1692787931 + }, + { + "status": 0, + "executed": 1692788231 + }, + { + "status": 0, + "executed": 1692788531 + }, + { + "status": 0, + "executed": 1692788832 + }, + { + "status": 0, + "executed": 1692789133 + }, + { + "status": 0, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/2 ingressOctets=410107210,egressOctets=9044166220591,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789433, + "occurrences": 8009, + "occurrences_watermark": 8009, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b4b30b9f-35bb-4e2d-9d6d-0d3daf3cae39", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789433 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/2.0 1206", + "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, + "duration": 0.573002546, + "executed": 1692789639, + "history": [ + { + "status": 0, + "executed": 1692783634 + }, + { + "status": 0, + "executed": 1692783934 + }, + { + "status": 0, + "executed": 1692784234 + }, + { + "status": 0, + "executed": 1692784534 + }, + { + "status": 0, + "executed": 1692784835 + }, + { + "status": 0, + "executed": 1692785135 + }, + { + "status": 0, + "executed": 1692785435 + }, + { + "status": 0, + "executed": 1692785735 + }, + { + "status": 0, + "executed": 1692786036 + }, + { + "status": 0, + "executed": 1692786336 + }, + { + "status": 0, + "executed": 1692786637 + }, + { + "status": 0, + "executed": 1692786936 + }, + { + "status": 0, + "executed": 1692787236 + }, + { + "status": 0, + "executed": 1692787537 + }, + { + "status": 0, + "executed": 1692787837 + }, + { + "status": 0, + "executed": 1692788137 + }, + { + "status": 0, + "executed": 1692788438 + }, + { + "status": 0, + "executed": 1692788738 + }, + { + "status": 0, + "executed": 1692789038 + }, + { + "status": 0, + "executed": 1692789339 + }, + { + "status": 0, + "executed": 1692789639 + } + ], + "issued": 1692789638, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/2.0 ingressOctets=410089858,egressOctets=9044791683439,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789639, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "42a8d280-8ea1-455f-939a-5fd4c96498c0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789639 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/3 605", + "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, + "duration": 0.497516302, + "executed": 1692789690, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783987 + }, + { + "status": 0, + "executed": 1692784287 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785788 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787289 + }, + { + "status": 0, + "executed": 1692787589 + }, + { + "status": 0, + "executed": 1692787889 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788790 + }, + { + "status": 0, + "executed": 1692789090 + }, + { + "status": 0, + "executed": 1692789390 + }, + { + "status": 0, + "executed": 1692789690 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789690, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3b2a0888-e2be-4125-9764-a76ee6a84a02", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789690 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/4 606", + "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, + "duration": 0.516612729, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785785 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786686 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787286 + }, + { + "status": 0, + "executed": 1692787586 + }, + { + "status": 0, + "executed": 1692787886 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788787 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789687, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cbc9050e-5aef-4100-a698-9052b095f8e0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789688 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/5 607", + "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, + "duration": 0.561317943, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "aa5987ee-368e-47de-8e15-0c28fbeded37", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/6 608", + "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, + "duration": 0.519499125, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783523 + }, + { + "status": 0, + "executed": 1692783824 + }, + { + "status": 0, + "executed": 1692784124 + }, + { + "status": 0, + "executed": 1692784424 + }, + { + "status": 0, + "executed": 1692784724 + }, + { + "status": 0, + "executed": 1692785024 + }, + { + "status": 0, + "executed": 1692785324 + }, + { + "status": 0, + "executed": 1692785625 + }, + { + "status": 0, + "executed": 1692785925 + }, + { + "status": 0, + "executed": 1692786226 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786826 + }, + { + "status": 0, + "executed": 1692787126 + }, + { + "status": 0, + "executed": 1692787426 + }, + { + "status": 0, + "executed": 1692787727 + }, + { + "status": 0, + "executed": 1692788027 + }, + { + "status": 0, + "executed": 1692788327 + }, + { + "status": 0, + "executed": 1692788627 + }, + { + "status": 0, + "executed": 1692788928 + }, + { + "status": 0, + "executed": 1692789228 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789527, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 5944, + "occurrences_watermark": 5944, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "282afa88-deb6-4df8-bc9c-d0fd9c1e9862", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789528 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/7 609", + "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, + "duration": 0.486672265, + "executed": 1692789569, + "history": [ + { + "status": 0, + "executed": 1692783565 + }, + { + "status": 0, + "executed": 1692783865 + }, + { + "status": 0, + "executed": 1692784165 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784765 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785966 + }, + { + "status": 0, + "executed": 1692786266 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787467 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788068 + }, + { + "status": 0, + "executed": 1692788368 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789269 + }, + { + "status": 0, + "executed": 1692789569 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789569, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a237a98b-408b-47f6-9338-597cdd8eb9f2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789570 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/8 610", + "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, + "duration": 2.296109169, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "05fa918a-28de-4ecf-9d69-b6aee763593b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789521 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net ge-0/3/9 611", + "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, + "duration": 0.582618963, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=ge-0/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-ge-0-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e6c7646-5653-43ff-aefc-a4569bac5b03", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3000 972", + "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, + "duration": 0.540681126, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.3000 ingressOctets=7643399782,egressOctets=124522582884,ingressErrors=0,egressErrors=0,ingressOctetsv6=2750744099,egressOctetsv6=36483844861,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 5944, + "occurrences_watermark": 5944, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.3000", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b778f571-d2fa-48d4-9858-f575c9f4a390", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3001 665", + "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, + "duration": 0.510955426, + "executed": 1692789690, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783987 + }, + { + "status": 0, + "executed": 1692784287 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785788 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786688 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787289 + }, + { + "status": 0, + "executed": 1692787589 + }, + { + "status": 0, + "executed": 1692787889 + }, + { + "status": 0, + "executed": 1692788189 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788790 + }, + { + "status": 0, + "executed": 1692789090 + }, + { + "status": 0, + "executed": 1692789390 + }, + { + "status": 0, + "executed": 1692789690 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.3001 ingressOctets=172897568,egressOctets=100,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789690, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.3001", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "48cdc64a-d629-480b-923f-0333e5d13716", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789690 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3002 1457", + "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, + "duration": 0.458589489, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.3002 ingressOctets=1163245065,egressOctets=79758907,ingressErrors=0,egressErrors=0,ingressOctetsv6=1760998,egressOctetsv6=1254,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.3002", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8173b9b4-41a5-4a5b-a6a6-f97743a97e29", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3003 1458", + "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, + "duration": 0.6734231, + "executed": 1692789682, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786381 + }, + { + "status": 0, + "executed": 1692786681 + }, + { + "status": 0, + "executed": 1692786981 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788482 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789682 + } + ], + "issued": 1692789682, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.3003 ingressOctets=1163190277,egressOctets=320983621,ingressErrors=0,egressErrors=0,ingressOctetsv6=1661484,egressOctetsv6=1252,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789682, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.3003", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "314beee1-5d3e-4122-83b7-6a2be6981a0e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789683 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3004 574", + "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, + "duration": 0.526180724, + "executed": 1692789670, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784567 + }, + { + "status": 0, + "executed": 1692784867 + }, + { + "status": 0, + "executed": 1692785167 + }, + { + "status": 0, + "executed": 1692785467 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786368 + }, + { + "status": 0, + "executed": 1692786668 + }, + { + "status": 0, + "executed": 1692786968 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787569 + }, + { + "status": 0, + "executed": 1692787869 + }, + { + "status": 0, + "executed": 1692788169 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789070 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789670 + } + ], + "issued": 1692789670, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.3004 ingressOctets=172949080,egressOctets=1957055685,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789670, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.3004", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c630dc50-cb0b-4b82-b8bf-28b38282c2b5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789671 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3006 782", + "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, + "duration": 0.525188079, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789103 + }, + { + "status": 0, + "executed": 1692789403 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.3006 ingressOctets=179549089,egressOctets=6081397,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.3006", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "27fb76a1-2628-4ea2-b721-c9353bb396d8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789703 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.3008 630", + "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, + "duration": 0.527910737, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.3008 ingressOctets=52624,egressOctets=122492943,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.3008", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e5df3e7-82b2-47c6-92e4-2bba7ac24ae4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.370 1098", + "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, + "duration": 0.53700583, + "executed": 1692789693, + "history": [ + { + "status": 0, + "executed": 1692783690 + }, + { + "status": 0, + "executed": 1692783990 + }, + { + "status": 0, + "executed": 1692784290 + }, + { + "status": 0, + "executed": 1692784591 + }, + { + "status": 0, + "executed": 1692784891 + }, + { + "status": 0, + "executed": 1692785191 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786092 + }, + { + "status": 0, + "executed": 1692786392 + }, + { + "status": 0, + "executed": 1692786692 + }, + { + "status": 0, + "executed": 1692786992 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789693 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.370 ingressOctets=473256665458,egressOctets=247107519589,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789693, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.370", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4287f7ee-d222-4f98-ada5-13c494cdfc81", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.50 615", + "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, + "duration": 1.117155801, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786075 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786676 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.50 ingressOctets=492130143,egressOctets=359194906,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.50", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8a8d6eff-4cdf-4839-b80c-f33152e21f00", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789680 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.991 931", + "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, + "duration": 0.539223597, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.991 ingressOctets=172911964,egressOctets=23949239496,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.991", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f2c62ebb-6fee-4e40-9473-534be5149be6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net irb.999 738", + "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, + "duration": 0.590965663, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787892 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=irb.999 ingressOctets=734915890,egressOctets=52258434,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-irb.999", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "edfc9f56-acf0-4722-befb-48a685ca2e59", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-0/3/10 708", + "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, + "duration": 0.535023846, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785956 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=lt-0/3/10 ingressOctets=3772627994,egressOctets=4090371546,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-lt-0-3-10", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4ffe3719-a02e-4300-92fb-26774f7d1d92", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789561 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-0/3/10.13 712", + "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, + "duration": 0.507843944, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783851 + }, + { + "status": 0, + "executed": 1692784151 + }, + { + "status": 0, + "executed": 1692784451 + }, + { + "status": 0, + "executed": 1692784751 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787453 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788054 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788654 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789554, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=lt-0/3/10.13 ingressOctets=2099720637,egressOctets=1688427808,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-lt-0-3-10.13", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "564f5f01-f64f-494d-8884-4e12f6562c87", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789555 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-0/3/10.31 714", + "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, + "duration": 0.523783571, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=lt-0/3/10.31 ingressOctets=1671209455,egressOctets=2398172659,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-lt-0-3-10.31", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8744098d-f0b1-42c9-bea9-49544b76832a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-1/1/0 1497", + "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, + "duration": 0.486366431, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784463 + }, + { + "status": 0, + "executed": 1692784762 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785363 + }, + { + "status": 0, + "executed": 1692785663 + }, + { + "status": 0, + "executed": 1692785963 + }, + { + "status": 0, + "executed": 1692786263 + }, + { + "status": 0, + "executed": 1692786564 + }, + { + "status": 0, + "executed": 1692786864 + }, + { + "status": 0, + "executed": 1692787164 + }, + { + "status": 0, + "executed": 1692787464 + }, + { + "status": 0, + "executed": 1692787765 + }, + { + "status": 0, + "executed": 1692788065 + }, + { + "status": 0, + "executed": 1692788365 + }, + { + "status": 0, + "executed": 1692788666 + }, + { + "status": 0, + "executed": 1692788966 + }, + { + "status": 0, + "executed": 1692789266 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789566, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=lt-1/1/0 ingressOctets=201232793189,egressOctets=203874343995,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-lt-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5b6e7b70-5c77-4e11-a04f-567a129ef2f2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789567 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-1/1/0.16 1500", + "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, + "duration": 0.556785493, + "executed": 1692789671, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784568 + }, + { + "status": 0, + "executed": 1692784868 + }, + { + "status": 0, + "executed": 1692785168 + }, + { + "status": 0, + "executed": 1692785468 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786369 + }, + { + "status": 0, + "executed": 1692786669 + }, + { + "status": 0, + "executed": 1692786969 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787570 + }, + { + "status": 0, + "executed": 1692787870 + }, + { + "status": 0, + "executed": 1692788170 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789071 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789671 + } + ], + "issued": 1692789671, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=lt-1/1/0.16 ingressOctets=92240445,egressOctets=203678981297,ingressErrors=0,egressErrors=0,ingressOctetsv6=91669,egressOctetsv6=7550292331,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789671, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-lt-1-1-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "88501148-2488-4c16-85bf-81e3f1fd10db", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789672 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net lt-1/1/0.61 1501", + "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, + "duration": 0.512358038, + "executed": 1692789564, + "history": [ + { + "status": 0, + "executed": 1692783559 + }, + { + "status": 0, + "executed": 1692783859 + }, + { + "status": 0, + "executed": 1692784159 + }, + { + "status": 0, + "executed": 1692784461 + }, + { + "status": 0, + "executed": 1692784760 + }, + { + "status": 0, + "executed": 1692785060 + }, + { + "status": 0, + "executed": 1692785360 + }, + { + "status": 0, + "executed": 1692785660 + }, + { + "status": 0, + "executed": 1692785961 + }, + { + "status": 0, + "executed": 1692786262 + }, + { + "status": 0, + "executed": 1692786561 + }, + { + "status": 0, + "executed": 1692786862 + }, + { + "status": 0, + "executed": 1692787162 + }, + { + "status": 0, + "executed": 1692787462 + }, + { + "status": 0, + "executed": 1692787763 + }, + { + "status": 0, + "executed": 1692788063 + }, + { + "status": 0, + "executed": 1692788363 + }, + { + "status": 0, + "executed": 1692788664 + }, + { + "status": 0, + "executed": 1692788964 + }, + { + "status": 0, + "executed": 1692789264 + }, + { + "status": 0, + "executed": 1692789564 + } + ], + "issued": 1692789564, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=lt-1/1/0.61 ingressOctets=201140393794,egressOctets=103793875,ingressErrors=0,egressErrors=0,ingressOctetsv6=17198346649,egressOctetsv6=280839,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789564, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-lt-1-1-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7e21dc71-8d9f-43c2-8413-785bd62e7449", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789564 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/0 1194", + "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, + "duration": 0.551759694, + "executed": 1692789679, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786075 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786676 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787877 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789679 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/0/0 ingressOctets=30687021535,egressOctets=1768028587391,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789679, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "75492603-f3b6-4b44-896b-991c5f92f536", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/0.102 950", + "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, + "duration": 0.467583581, + "executed": 1692789493, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786491 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789493 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/0/0.102 ingressOctets=1913797810,egressOctets=34042358159,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789493, + "occurrences": 8009, + "occurrences_watermark": 8009, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-0-0.102", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "486061fc-77e8-4f86-a712-6fc89a62c15f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789494 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/0.103 959", + "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, + "duration": 0.57363113, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786605 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/0/0.103 ingressOctets=142850049,egressOctets=66270145,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-0-0.103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "309fe960-b5ec-4351-99f6-e9f82b5eb7d0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/0.666 584", + "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, + "duration": 0.4732418, + "executed": 1692789676, + "history": [ + { + "status": 0, + "executed": 1692783672 + }, + { + "status": 0, + "executed": 1692783972 + }, + { + "status": 0, + "executed": 1692784272 + }, + { + "status": 0, + "executed": 1692784573 + }, + { + "status": 0, + "executed": 1692784873 + }, + { + "status": 0, + "executed": 1692785173 + }, + { + "status": 0, + "executed": 1692785473 + }, + { + "status": 0, + "executed": 1692785773 + }, + { + "status": 0, + "executed": 1692786074 + }, + { + "status": 0, + "executed": 1692786374 + }, + { + "status": 0, + "executed": 1692786673 + }, + { + "status": 0, + "executed": 1692786974 + }, + { + "status": 0, + "executed": 1692787274 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787875 + }, + { + "status": 0, + "executed": 1692788175 + }, + { + "status": 0, + "executed": 1692788476 + }, + { + "status": 0, + "executed": 1692788776 + }, + { + "status": 0, + "executed": 1692789076 + }, + { + "status": 0, + "executed": 1692789377 + }, + { + "status": 0, + "executed": 1692789676 + } + ], + "issued": 1692789676, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/0/0.666 ingressOctets=28613731414,egressOctets=1733853371085,ingressErrors=0,egressErrors=0,ingressOctetsv6=13155469,egressOctetsv6=13100156,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789676, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-0-0.666", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "80f85f82-7e75-41ff-940a-fa955be84d44", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789677 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/1 1195", + "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, + "duration": 0.483226989, + "executed": 1692789544, + "history": [ + { + "status": 0, + "executed": 1692783540 + }, + { + "status": 0, + "executed": 1692783841 + }, + { + "status": 0, + "executed": 1692784141 + }, + { + "status": 0, + "executed": 1692784441 + }, + { + "status": 0, + "executed": 1692784741 + }, + { + "status": 0, + "executed": 1692785041 + }, + { + "status": 0, + "executed": 1692785341 + }, + { + "status": 0, + "executed": 1692785641 + }, + { + "status": 0, + "executed": 1692785941 + }, + { + "status": 0, + "executed": 1692786241 + }, + { + "status": 0, + "executed": 1692786542 + }, + { + "status": 0, + "executed": 1692786842 + }, + { + "status": 0, + "executed": 1692787142 + }, + { + "status": 0, + "executed": 1692787443 + }, + { + "status": 0, + "executed": 1692787743 + }, + { + "status": 0, + "executed": 1692788044 + }, + { + "status": 0, + "executed": 1692788344 + }, + { + "status": 0, + "executed": 1692788644 + }, + { + "status": 0, + "executed": 1692788944 + }, + { + "status": 0, + "executed": 1692789244 + }, + { + "status": 0, + "executed": 1692789544 + } + ], + "issued": 1692789544, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789544, + "occurrences": 4463, + "occurrences_watermark": 4463, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a83fc323-7539-4c2a-9be9-3d59cf7005ca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789545 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/2 1196", + "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, + "duration": 0.527576941, + "executed": 1692789613, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789613 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789613, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7db2b0d4-a9c9-4ad8-a749-d51c46d47475", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/0/3 1197", + "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, + "duration": 0.727896466, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784554 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787556 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/0/3 ingressOctets=0,egressOctets=52267776,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f9224a94-6576-41af-ab63-04a674f4fe3d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789658 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/0 1199", + "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, + "duration": 0.508377261, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783638 + }, + { + "status": 0, + "executed": 1692783938 + }, + { + "status": 0, + "executed": 1692784238 + }, + { + "status": 0, + "executed": 1692784538 + }, + { + "status": 0, + "executed": 1692784838 + }, + { + "status": 0, + "executed": 1692785138 + }, + { + "status": 0, + "executed": 1692785439 + }, + { + "status": 0, + "executed": 1692785739 + }, + { + "status": 0, + "executed": 1692786039 + }, + { + "status": 0, + "executed": 1692786339 + }, + { + "status": 0, + "executed": 1692786640 + }, + { + "status": 0, + "executed": 1692786940 + }, + { + "status": 0, + "executed": 1692787240 + }, + { + "status": 0, + "executed": 1692787540 + }, + { + "status": 0, + "executed": 1692787841 + }, + { + "status": 0, + "executed": 1692788141 + }, + { + "status": 0, + "executed": 1692788442 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789343 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/2/0 ingressOctets=1514206,egressOctets=352190974,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "78af0cb6-48f8-4c40-b489-f7208207f7fd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/0.100 983", + "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, + "duration": 0.470745558, + "executed": 1692789688, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783985 + }, + { + "status": 0, + "executed": 1692784285 + }, + { + "status": 0, + "executed": 1692784586 + }, + { + "status": 0, + "executed": 1692784886 + }, + { + "status": 0, + "executed": 1692785186 + }, + { + "status": 0, + "executed": 1692785486 + }, + { + "status": 0, + "executed": 1692785786 + }, + { + "status": 0, + "executed": 1692786087 + }, + { + "status": 0, + "executed": 1692786386 + }, + { + "status": 0, + "executed": 1692786687 + }, + { + "status": 0, + "executed": 1692786987 + }, + { + "status": 0, + "executed": 1692787287 + }, + { + "status": 0, + "executed": 1692787587 + }, + { + "status": 0, + "executed": 1692787887 + }, + { + "status": 0, + "executed": 1692788187 + }, + { + "status": 0, + "executed": 1692788488 + }, + { + "status": 0, + "executed": 1692788788 + }, + { + "status": 0, + "executed": 1692789088 + }, + { + "status": 0, + "executed": 1692789388 + }, + { + "status": 0, + "executed": 1692789688 + } + ], + "issued": 1692789688, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/2/0.100 ingressOctets=1065064,egressOctets=295340852,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=1576,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789688, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-2-0.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ed3bdde0-4812-4e2f-a7e5-04d220fdfbd7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789689 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/0.702 984", + "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, + "duration": 0.522122138, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783704 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784305 + }, + { + "status": 0, + "executed": 1692784605 + }, + { + "status": 0, + "executed": 1692784905 + }, + { + "status": 0, + "executed": 1692785205 + }, + { + "status": 0, + "executed": 1692785505 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786106 + }, + { + "status": 0, + "executed": 1692786409 + }, + { + "status": 0, + "executed": 1692786707 + }, + { + "status": 0, + "executed": 1692787007 + }, + { + "status": 0, + "executed": 1692787308 + }, + { + "status": 0, + "executed": 1692787608 + }, + { + "status": 0, + "executed": 1692787908 + }, + { + "status": 0, + "executed": 1692788208 + }, + { + "status": 0, + "executed": 1692788508 + }, + { + "status": 0, + "executed": 1692788809 + }, + { + "status": 0, + "executed": 1692789109 + }, + { + "status": 0, + "executed": 1692789409 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789708, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/2/0.702 ingressOctets=449394,egressOctets=2398500,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-2-0.702", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7af0c7cc-9ef5-40f7-9dfd-bc6269bfff20", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789709 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/1 1200", + "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, + "duration": 0.598760942, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785629 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/2/1 ingressOctets=5895036677,egressOctets=11423665856,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fde9e976-9c75-4fd0-b45a-617c4aa8b497", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/1.0 815", + "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, + "duration": 0.558046067, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785785 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786686 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787286 + }, + { + "status": 0, + "executed": 1692787586 + }, + { + "status": 0, + "executed": 1692787886 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788787 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789687, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/2/1.0 ingressOctets=5895158381,egressOctets=11431992791,ingressErrors=0,egressErrors=0,ingressOctetsv6=3174228364,egressOctetsv6=9781072999,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-2-1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8d29a9b0-ba33-4e8d-aa1b-9adff129692c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789688 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/2 1201", + "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, + "duration": 0.476802324, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/2/2 ingressOctets=345831575905,egressOctets=314746157089,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f23211d7-fbe2-4fee-a9f2-9a8a53bceada", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/2.0 1117", + "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, + "duration": 0.528436389, + "executed": 1692789509, + "history": [ + { + "status": 0, + "executed": 1692783505 + }, + { + "status": 0, + "executed": 1692783805 + }, + { + "status": 0, + "executed": 1692784106 + }, + { + "status": 0, + "executed": 1692784406 + }, + { + "status": 0, + "executed": 1692784706 + }, + { + "status": 0, + "executed": 1692785006 + }, + { + "status": 0, + "executed": 1692785306 + }, + { + "status": 0, + "executed": 1692785607 + }, + { + "status": 0, + "executed": 1692785907 + }, + { + "status": 0, + "executed": 1692786207 + }, + { + "status": 0, + "executed": 1692786507 + }, + { + "status": 0, + "executed": 1692786808 + }, + { + "status": 0, + "executed": 1692787108 + }, + { + "status": 0, + "executed": 1692787408 + }, + { + "status": 0, + "executed": 1692787709 + }, + { + "status": 0, + "executed": 1692788009 + }, + { + "status": 0, + "executed": 1692788309 + }, + { + "status": 0, + "executed": 1692788609 + }, + { + "status": 0, + "executed": 1692788910 + }, + { + "status": 0, + "executed": 1692789210 + }, + { + "status": 0, + "executed": 1692789509 + } + ], + "issued": 1692789509, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/2/2.0 ingressOctets=345831069881,egressOctets=314751319315,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789509, + "occurrences": 7985, + "occurrences_watermark": 7985, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-2-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6b08d83c-f299-47ec-ba9f-34adf430ac21", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2662, + "timestamp": 1692789510 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/3 1202", + "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, + "duration": 0.618217485, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/2/3 ingressOctets=10496861283149,egressOctets=224940520634,ingressErrors=17928,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "57ce4276-2c3b-45d8-bf48-6aee9b5e776b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-11/2/3.0 818", + "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, + "duration": 0.515891751, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-11/2/3.0 ingressOctets=10496861283149,egressOctets=224943149174,ingressErrors=0,egressErrors=0,ingressOctetsv6=5089708325271,egressOctetsv6=109479375073,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-11-2-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d671c49d-e878-4c67-ad8b-0711e8710340", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/0 1260", + "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, + "duration": 0.50382076, + "executed": 1692789587, + "history": [ + { + "status": 0, + "executed": 1692783583 + }, + { + "status": 0, + "executed": 1692783883 + }, + { + "status": 0, + "executed": 1692784183 + }, + { + "status": 0, + "executed": 1692784483 + }, + { + "status": 0, + "executed": 1692784783 + }, + { + "status": 0, + "executed": 1692785083 + }, + { + "status": 0, + "executed": 1692785383 + }, + { + "status": 0, + "executed": 1692785683 + }, + { + "status": 0, + "executed": 1692785984 + }, + { + "status": 0, + "executed": 1692786284 + }, + { + "status": 0, + "executed": 1692786584 + }, + { + "status": 0, + "executed": 1692786884 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787485 + }, + { + "status": 0, + "executed": 1692787786 + }, + { + "status": 0, + "executed": 1692788086 + }, + { + "status": 0, + "executed": 1692788386 + }, + { + "status": 0, + "executed": 1692788687 + }, + { + "status": 0, + "executed": 1692788987 + }, + { + "status": 0, + "executed": 1692789287 + }, + { + "status": 0, + "executed": 1692789587 + } + ], + "issued": 1692789587, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/0/0 ingressOctets=2486720815743,egressOctets=320204475047,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789587, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4d29a462-a75e-4b31-aa80-d33c185dbe28", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789587 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/1 1261", + "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, + "duration": 0.557222371, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/0/1 ingressOctets=109442825994,egressOctets=734732994344,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ed6293de-c880-4373-81fe-ed6f90a5f0d4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/2 1262", + "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, + "duration": 0.506673104, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784133 + }, + { + "status": 0, + "executed": 1692784433 + }, + { + "status": 0, + "executed": 1692784733 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786233 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/0/2 ingressOctets=115132463867,egressOctets=489442562740,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dd2718ed-b36e-4bea-b58f-0d5069028a92", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/3 1263", + "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, + "duration": 0.502911601, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/0/3 ingressOctets=1036212147117003,egressOctets=3913006687880,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "08911c87-4d67-417d-bb42-c2d5589c4dc9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/3.0 724", + "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, + "duration": 0.567123178, + "executed": 1692789721, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785818 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786719 + }, + { + "status": 0, + "executed": 1692787019 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787920 + }, + { + "status": 0, + "executed": 1692788220 + }, + { + "status": 0, + "executed": 1692788520 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789121 + }, + { + "status": 0, + "executed": 1692789421 + }, + { + "status": 0, + "executed": 1692789721 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/0/3.0 ingressOctets=1036212147122349,egressOctets=3913016926796,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789721, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-0-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2246178b-932e-436c-a2f1-55018dc15550", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/4 1264", + "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, + "duration": 0.541741293, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785076 + }, + { + "status": 0, + "executed": 1692785376 + }, + { + "status": 0, + "executed": 1692785676 + }, + { + "status": 0, + "executed": 1692785977 + }, + { + "status": 0, + "executed": 1692786277 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786877 + }, + { + "status": 0, + "executed": 1692787177 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787778 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788679 + }, + { + "status": 0, + "executed": 1692788979 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/0/4 ingressOctets=12339557637901,egressOctets=482920494854,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-0-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3c998ada-e1b0-4092-86b1-2a316d3128f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/5 1265", + "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, + "duration": 0.553683128, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783498 + }, + { + "status": 0, + "executed": 1692783798 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692784999 + }, + { + "status": 0, + "executed": 1692785299 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786200 + }, + { + "status": 0, + "executed": 1692786500 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787401 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788002 + }, + { + "status": 0, + "executed": 1692788302 + }, + { + "status": 0, + "executed": 1692788602 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/0/5 ingressOctets=11047398820159,egressOctets=537779445352,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a46b8e5e-be52-4e7e-93c6-3e35aa2975ac", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/6 1266", + "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, + "duration": 0.523164484, + "executed": 1692789458, + "history": [ + { + "status": 0, + "executed": 1692783454 + }, + { + "status": 0, + "executed": 1692783754 + }, + { + "status": 0, + "executed": 1692784054 + }, + { + "status": 0, + "executed": 1692784355 + }, + { + "status": 0, + "executed": 1692784655 + }, + { + "status": 0, + "executed": 1692784955 + }, + { + "status": 0, + "executed": 1692785255 + }, + { + "status": 0, + "executed": 1692785556 + }, + { + "status": 0, + "executed": 1692785856 + }, + { + "status": 0, + "executed": 1692786156 + }, + { + "status": 0, + "executed": 1692786456 + }, + { + "status": 0, + "executed": 1692786757 + }, + { + "status": 0, + "executed": 1692787057 + }, + { + "status": 0, + "executed": 1692787357 + }, + { + "status": 0, + "executed": 1692787658 + }, + { + "status": 0, + "executed": 1692787958 + }, + { + "status": 0, + "executed": 1692788258 + }, + { + "status": 0, + "executed": 1692788558 + }, + { + "status": 0, + "executed": 1692788858 + }, + { + "status": 0, + "executed": 1692789158 + }, + { + "status": 0, + "executed": 1692789458 + } + ], + "issued": 1692789458, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/0/6 ingressOctets=12846968198,egressOctets=18601946835,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789458, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-0-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7bb8e6d7-fd57-4715-a104-72a13ccbecdb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789459 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/6.0 1050", + "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, + "duration": 0.587379396, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/0/6.0 ingressOctets=12848283365,egressOctets=18613089049,ingressErrors=0,egressErrors=0,ingressOctetsv6=5144394201,egressOctetsv6=14928451672,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-0-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fea0f1bf-716f-4124-92ae-c66caa36ffd9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/0/7 1267", + "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, + "duration": 0.521810236, + "executed": 1692789486, + "history": [ + { + "status": 0, + "executed": 1692783481 + }, + { + "status": 0, + "executed": 1692783781 + }, + { + "status": 0, + "executed": 1692784082 + }, + { + "status": 0, + "executed": 1692784382 + }, + { + "status": 0, + "executed": 1692784682 + }, + { + "status": 0, + "executed": 1692784982 + }, + { + "status": 0, + "executed": 1692785282 + }, + { + "status": 0, + "executed": 1692785583 + }, + { + "status": 0, + "executed": 1692785883 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786484 + }, + { + "status": 0, + "executed": 1692786784 + }, + { + "status": 0, + "executed": 1692787084 + }, + { + "status": 0, + "executed": 1692787384 + }, + { + "status": 0, + "executed": 1692787685 + }, + { + "status": 0, + "executed": 1692787985 + }, + { + "status": 0, + "executed": 1692788285 + }, + { + "status": 0, + "executed": 1692788585 + }, + { + "status": 0, + "executed": 1692788886 + }, + { + "status": 0, + "executed": 1692789186 + }, + { + "status": 0, + "executed": 1692789486 + } + ], + "issued": 1692789485, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/0/7 ingressOctets=42119661050,egressOctets=318985970050,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789486, + "occurrences": 5944, + "occurrences_watermark": 5944, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-0-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "992921bb-54a5-4956-9dd0-622fe8385bbd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2854, + "timestamp": 1692789486 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/0 1268", + "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, + "duration": 0.566694097, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783511 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785012 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/0 ingressOctets=40545359796,egressOctets=222183326681,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "61abbd80-3e21-4366-b047-def3242959e6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2854, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/1 1269", + "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, + "duration": 2.6214418779999997, + "executed": 1692789521, + "history": [ + { + "status": 0, + "executed": 1692783514 + }, + { + "status": 0, + "executed": 1692783814 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785015 + }, + { + "status": 0, + "executed": 1692785315 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787417 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788018 + }, + { + "status": 0, + "executed": 1692788318 + }, + { + "status": 0, + "executed": 1692788618 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789521 + } + ], + "issued": 1692789521, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789521, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a5c23873-63c5-422b-846f-19276116740c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789524 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/2 1270", + "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, + "duration": 0.46963834, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783600 + }, + { + "status": 0, + "executed": 1692783900 + }, + { + "status": 0, + "executed": 1692784200 + }, + { + "status": 0, + "executed": 1692784500 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786001 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786602 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787202 + }, + { + "status": 0, + "executed": 1692787502 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788103 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789304 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789604, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/2 ingressOctets=12046494771852,egressOctets=488340181448,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "256b316c-c987-48dc-91b4-91ae77a22926", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789605 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/3 1271", + "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, + "duration": 0.519702855, + "executed": 1692789644, + "history": [ + { + "status": 0, + "executed": 1692783640 + }, + { + "status": 0, + "executed": 1692783940 + }, + { + "status": 0, + "executed": 1692784240 + }, + { + "status": 0, + "executed": 1692784540 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785441 + }, + { + "status": 0, + "executed": 1692785741 + }, + { + "status": 0, + "executed": 1692786042 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787843 + }, + { + "status": 0, + "executed": 1692788143 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789044 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789644 + } + ], + "issued": 1692789644, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/3 ingressOctets=13848419351452,egressOctets=14492952431152,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789644, + "occurrences": 33, + "occurrences_watermark": 33, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "86f88797-3b27-45cf-9b14-1121b8686600", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/3.0 1121", + "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, + "duration": 0.615043858, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783833 + }, + { + "status": 0, + "executed": 1692784133 + }, + { + "status": 0, + "executed": 1692784433 + }, + { + "status": 0, + "executed": 1692784733 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786234 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/3.0 ingressOctets=13847462129951,egressOctets=14491783460488,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 5971, + "occurrences_watermark": 5971, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-3.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "83cf7e20-e965-40df-a98b-cc2d261393e4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 1991, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/4 1272", + "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, + "duration": 0.495496043, + "executed": 1692789528, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786526 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789528 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789528, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "673e29ee-fac4-44bb-9277-54d39a8ec804", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789529 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/5 1273", + "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, + "duration": 0.544896804, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/5 ingressOctets=659634920,egressOctets=297315847,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 5944, + "occurrences_watermark": 5944, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "945a58f0-98c0-4bb8-beff-e868e12fbf13", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/6 1274", + "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, + "duration": 0.546188463, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786235 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/6 ingressOctets=0,egressOctets=79012802,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bc9d6c73-a6ba-4241-99bc-1fbd834b4b3a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/6.1220 1349", + "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, + "duration": 0.523375829, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/6.1220 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-6.1220", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2a487483-91d2-4dad-82ca-60ab5005ebd4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/7 1275", + "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, + "duration": 0.557568376, + "executed": 1692789617, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789617 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/7 ingressOctets=393690396803,egressOctets=354730571048,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789617, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6efe228e-a9c9-4228-a27d-1fd85a83b461", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/1/7.0 1120", + "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, + "duration": 0.523178302, + "executed": 1692789513, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786211 + }, + { + "status": 0, + "executed": 1692786511 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789513 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/1/7.0 ingressOctets=393689267237,egressOctets=354735749992,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789513, + "occurrences": 7985, + "occurrences_watermark": 7985, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-1-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "179df2cb-7981-47de-90c0-212adf9613d9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2662, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/0 1276", + "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, + "duration": 0.487386951, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789531, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/0 ingressOctets=0,egressOctets=62641395,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d0c804e0-bee6-43ae-93d2-c1ae10d0a45a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/1 1277", + "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, + "duration": 0.670168278, + "executed": 1692789523, + "history": [ + { + "status": 0, + "executed": 1692783514 + }, + { + "status": 0, + "executed": 1692783814 + }, + { + "status": 0, + "executed": 1692784115 + }, + { + "status": 0, + "executed": 1692784415 + }, + { + "status": 0, + "executed": 1692784715 + }, + { + "status": 0, + "executed": 1692785015 + }, + { + "status": 0, + "executed": 1692785315 + }, + { + "status": 0, + "executed": 1692785616 + }, + { + "status": 0, + "executed": 1692785916 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786517 + }, + { + "status": 0, + "executed": 1692786817 + }, + { + "status": 0, + "executed": 1692787117 + }, + { + "status": 0, + "executed": 1692787417 + }, + { + "status": 0, + "executed": 1692787718 + }, + { + "status": 0, + "executed": 1692788018 + }, + { + "status": 0, + "executed": 1692788318 + }, + { + "status": 0, + "executed": 1692788618 + }, + { + "status": 0, + "executed": 1692788919 + }, + { + "status": 0, + "executed": 1692789219 + }, + { + "status": 0, + "executed": 1692789523 + } + ], + "issued": 1692789522, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/1 ingressOctets=0,egressOctets=62634422,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789523, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "519e7f43-afaf-47e1-ac9d-b714cd50a900", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789523 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/2 1278", + "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, + "duration": 0.560253583, + "executed": 1692789658, + "history": [ + { + "status": 0, + "executed": 1692783654 + }, + { + "status": 0, + "executed": 1692783954 + }, + { + "status": 0, + "executed": 1692784254 + }, + { + "status": 0, + "executed": 1692784555 + }, + { + "status": 0, + "executed": 1692784855 + }, + { + "status": 0, + "executed": 1692785155 + }, + { + "status": 0, + "executed": 1692785455 + }, + { + "status": 0, + "executed": 1692785755 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786356 + }, + { + "status": 0, + "executed": 1692786656 + }, + { + "status": 0, + "executed": 1692786956 + }, + { + "status": 0, + "executed": 1692787256 + }, + { + "status": 0, + "executed": 1692787557 + }, + { + "status": 0, + "executed": 1692787857 + }, + { + "status": 0, + "executed": 1692788157 + }, + { + "status": 0, + "executed": 1692788457 + }, + { + "status": 0, + "executed": 1692788757 + }, + { + "status": 0, + "executed": 1692789058 + }, + { + "status": 0, + "executed": 1692789358 + }, + { + "status": 0, + "executed": 1692789658 + } + ], + "issued": 1692789658, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/2 ingressOctets=11746917243118,egressOctets=617954257331,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789658, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fb9ffd64-f869-438e-9fde-be3a21405cab", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789659 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/3 1279", + "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, + "duration": 0.534848595, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783637 + }, + { + "status": 0, + "executed": 1692783937 + }, + { + "status": 0, + "executed": 1692784237 + }, + { + "status": 0, + "executed": 1692784537 + }, + { + "status": 0, + "executed": 1692784838 + }, + { + "status": 0, + "executed": 1692785138 + }, + { + "status": 0, + "executed": 1692785438 + }, + { + "status": 0, + "executed": 1692785739 + }, + { + "status": 0, + "executed": 1692786039 + }, + { + "status": 0, + "executed": 1692786339 + }, + { + "status": 0, + "executed": 1692786640 + }, + { + "status": 0, + "executed": 1692786940 + }, + { + "status": 0, + "executed": 1692787240 + }, + { + "status": 0, + "executed": 1692787540 + }, + { + "status": 0, + "executed": 1692787841 + }, + { + "status": 0, + "executed": 1692788141 + }, + { + "status": 0, + "executed": 1692788442 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789343 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/3 ingressOctets=479299636953,egressOctets=252752385482,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a66cfc20-8860-4d71-8e2f-f12b7a6cbe1a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/4 1280", + "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, + "duration": 0.537570496, + "executed": 1692789590, + "history": [ + { + "status": 0, + "executed": 1692783586 + }, + { + "status": 0, + "executed": 1692783886 + }, + { + "status": 0, + "executed": 1692784186 + }, + { + "status": 0, + "executed": 1692784486 + }, + { + "status": 0, + "executed": 1692784786 + }, + { + "status": 0, + "executed": 1692785087 + }, + { + "status": 0, + "executed": 1692785387 + }, + { + "status": 0, + "executed": 1692785687 + }, + { + "status": 0, + "executed": 1692785988 + }, + { + "status": 0, + "executed": 1692786288 + }, + { + "status": 0, + "executed": 1692786587 + }, + { + "status": 0, + "executed": 1692786888 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787488 + }, + { + "status": 0, + "executed": 1692787789 + }, + { + "status": 0, + "executed": 1692788089 + }, + { + "status": 0, + "executed": 1692788389 + }, + { + "status": 0, + "executed": 1692788690 + }, + { + "status": 0, + "executed": 1692788990 + }, + { + "status": 0, + "executed": 1692789290 + }, + { + "status": 0, + "executed": 1692789590 + } + ], + "issued": 1692789590, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/4 ingressOctets=284351367,egressOctets=292492261,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789590, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "69a35875-50f1-4144-9537-783bf974798d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789591 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/5 1281", + "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, + "duration": 0.515668179, + "executed": 1692789653, + "history": [ + { + "status": 0, + "executed": 1692783649 + }, + { + "status": 0, + "executed": 1692783949 + }, + { + "status": 0, + "executed": 1692784249 + }, + { + "status": 0, + "executed": 1692784549 + }, + { + "status": 0, + "executed": 1692784851 + }, + { + "status": 0, + "executed": 1692785150 + }, + { + "status": 0, + "executed": 1692785450 + }, + { + "status": 0, + "executed": 1692785750 + }, + { + "status": 0, + "executed": 1692786050 + }, + { + "status": 0, + "executed": 1692786351 + }, + { + "status": 0, + "executed": 1692786651 + }, + { + "status": 0, + "executed": 1692786951 + }, + { + "status": 0, + "executed": 1692787251 + }, + { + "status": 0, + "executed": 1692787552 + }, + { + "status": 0, + "executed": 1692787852 + }, + { + "status": 0, + "executed": 1692788152 + }, + { + "status": 0, + "executed": 1692788452 + }, + { + "status": 0, + "executed": 1692788752 + }, + { + "status": 0, + "executed": 1692789053 + }, + { + "status": 0, + "executed": 1692789353 + }, + { + "status": 0, + "executed": 1692789653 + } + ], + "issued": 1692789653, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/5 ingressOctets=8768622983,egressOctets=4921380333316,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789653, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a224cc1a-da18-4cbe-b947-f38837ac290f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789654 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/6 1282", + "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, + "duration": 0.596177233, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785697 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/6 ingressOctets=830638490,egressOctets=6874475184079,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7effb76f-c8ed-4b56-870f-cec56980c44d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789601 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/7 1283", + "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, + "duration": 0.499611997, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786060 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786661 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/7 ingressOctets=89451501958,egressOctets=81735517670,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "30023ce8-dec5-4606-96a7-aac1a0f015d4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789664 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/7.22 921", + "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, + "duration": 0.667667893, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/7.22 ingressOctets=89450196478,egressOctets=81734153207,ingressErrors=0,egressErrors=0,ingressOctetsv6=41599884660,egressOctetsv6=40119951061,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-7.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc47d96c-315c-46ec-9efe-d4f918d39408", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/7.903 927", + "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, + "duration": 0.540982722, + "executed": 1692789629, + "history": [ + { + "status": 0, + "executed": 1692783625 + }, + { + "status": 0, + "executed": 1692783925 + }, + { + "status": 0, + "executed": 1692784225 + }, + { + "status": 0, + "executed": 1692784525 + }, + { + "status": 0, + "executed": 1692784826 + }, + { + "status": 0, + "executed": 1692785126 + }, + { + "status": 0, + "executed": 1692785426 + }, + { + "status": 0, + "executed": 1692785726 + }, + { + "status": 0, + "executed": 1692786027 + }, + { + "status": 0, + "executed": 1692786327 + }, + { + "status": 0, + "executed": 1692786627 + }, + { + "status": 0, + "executed": 1692786927 + }, + { + "status": 0, + "executed": 1692787227 + }, + { + "status": 0, + "executed": 1692787528 + }, + { + "status": 0, + "executed": 1692787828 + }, + { + "status": 0, + "executed": 1692788128 + }, + { + "status": 0, + "executed": 1692788429 + }, + { + "status": 0, + "executed": 1692788729 + }, + { + "status": 0, + "executed": 1692789029 + }, + { + "status": 0, + "executed": 1692789330 + }, + { + "status": 0, + "executed": 1692789629 + } + ], + "issued": 1692789629, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/7.903 ingressOctets=1048,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789629, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-7.903", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "be12bfc1-fdc9-461a-856a-b4422c8712cf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789630 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/2/7.908 929", + "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, + "duration": 0.528689052, + "executed": 1692789657, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785754 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787255 + }, + { + "status": 0, + "executed": 1692787555 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788456 + }, + { + "status": 0, + "executed": 1692788756 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789357 + }, + { + "status": 0, + "executed": 1692789657 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/2/7.908 ingressOctets=1048,egressOctets=14832,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789657, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-2-7.908", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "faf82a63-6a39-41c4-8558-eee6d0e199de", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789657 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/0 1284", + "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, + "duration": 0.535689374, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783898 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786001 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/0 ingressOctets=883007082,egressOctets=315577629,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5d4074a8-c39c-45df-9ef7-26cda6aa11f6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/0.0 1040", + "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, + "duration": 0.517699579, + "executed": 1692789610, + "history": [ + { + "status": 0, + "executed": 1692783607 + }, + { + "status": 0, + "executed": 1692783907 + }, + { + "status": 0, + "executed": 1692784207 + }, + { + "status": 0, + "executed": 1692784507 + }, + { + "status": 0, + "executed": 1692784807 + }, + { + "status": 0, + "executed": 1692785107 + }, + { + "status": 0, + "executed": 1692785407 + }, + { + "status": 0, + "executed": 1692785707 + }, + { + "status": 0, + "executed": 1692786008 + }, + { + "status": 0, + "executed": 1692786308 + }, + { + "status": 0, + "executed": 1692786608 + }, + { + "status": 0, + "executed": 1692786908 + }, + { + "status": 0, + "executed": 1692787208 + }, + { + "status": 0, + "executed": 1692787508 + }, + { + "status": 0, + "executed": 1692787809 + }, + { + "status": 0, + "executed": 1692788109 + }, + { + "status": 0, + "executed": 1692788409 + }, + { + "status": 0, + "executed": 1692788710 + }, + { + "status": 0, + "executed": 1692789010 + }, + { + "status": 0, + "executed": 1692789310 + }, + { + "status": 0, + "executed": 1692789610 + } + ], + "issued": 1692789610, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/0.0 ingressOctets=883002131,egressOctets=315571167,ingressErrors=0,egressErrors=0,ingressOctetsv6=627198668,egressOctetsv6=130798107,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789610, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4735ece5-0a02-485e-81a1-8fd53d63b41c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789611 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/1 1285", + "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, + "duration": 0.507468198, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/1 ingressOctets=1379808021,egressOctets=4139463470557,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b96906e5-0ed4-4323-b45b-0b013d6f42eb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/2 1286", + "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, + "duration": 0.489219094, + "executed": 1692789606, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784502 + }, + { + "status": 0, + "executed": 1692784802 + }, + { + "status": 0, + "executed": 1692785102 + }, + { + "status": 0, + "executed": 1692785402 + }, + { + "status": 0, + "executed": 1692785702 + }, + { + "status": 0, + "executed": 1692786003 + }, + { + "status": 0, + "executed": 1692786303 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786903 + }, + { + "status": 0, + "executed": 1692787204 + }, + { + "status": 0, + "executed": 1692787504 + }, + { + "status": 0, + "executed": 1692787804 + }, + { + "status": 0, + "executed": 1692788105 + }, + { + "status": 0, + "executed": 1692788405 + }, + { + "status": 0, + "executed": 1692788705 + }, + { + "status": 0, + "executed": 1692789005 + }, + { + "status": 0, + "executed": 1692789306 + }, + { + "status": 0, + "executed": 1692789606 + } + ], + "issued": 1692789606, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/2 ingressOctets=3051563005,egressOctets=2181906775469,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789606, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5c71e16d-66d1-4ac1-90ee-cc2e785fb869", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/3 1287", + "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, + "duration": 0.473414008, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/3 ingressOctets=124206818327,egressOctets=137500295501,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d358f930-60d3-4265-9763-099d8667431b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/3.1303 1293", + "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, + "duration": 0.497574187, + "executed": 1692789719, + "history": [ + { + "status": 0, + "executed": 1692783714 + }, + { + "status": 0, + "executed": 1692784014 + }, + { + "status": 0, + "executed": 1692784315 + }, + { + "status": 0, + "executed": 1692784615 + }, + { + "status": 0, + "executed": 1692784915 + }, + { + "status": 0, + "executed": 1692785215 + }, + { + "status": 0, + "executed": 1692785515 + }, + { + "status": 0, + "executed": 1692785815 + }, + { + "status": 0, + "executed": 1692786115 + }, + { + "status": 0, + "executed": 1692786416 + }, + { + "status": 0, + "executed": 1692786716 + }, + { + "status": 0, + "executed": 1692787016 + }, + { + "status": 0, + "executed": 1692787317 + }, + { + "status": 0, + "executed": 1692787617 + }, + { + "status": 0, + "executed": 1692787918 + }, + { + "status": 0, + "executed": 1692788218 + }, + { + "status": 0, + "executed": 1692788518 + }, + { + "status": 0, + "executed": 1692788818 + }, + { + "status": 0, + "executed": 1692789119 + }, + { + "status": 0, + "executed": 1692789419 + }, + { + "status": 0, + "executed": 1692789719 + } + ], + "issued": 1692789718, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/3.1303 ingressOctets=414885,egressOctets=591783,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789719, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-3.1303", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b95b252a-5e05-4ad4-b78d-55cba72da94a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789719 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/3.1305 1292", + "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, + "duration": 0.569733635, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784519 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/3.1305 ingressOctets=127237,egressOctets=163558185,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-3.1305", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e40a8f1-8948-4956-8544-692b53785a1b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789623 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/3.1338 961", + "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, + "duration": 0.56007721, + "executed": 1692789455, + "history": [ + { + "status": 0, + "executed": 1692783451 + }, + { + "status": 0, + "executed": 1692783751 + }, + { + "status": 0, + "executed": 1692784051 + }, + { + "status": 0, + "executed": 1692784352 + }, + { + "status": 0, + "executed": 1692784652 + }, + { + "status": 0, + "executed": 1692784952 + }, + { + "status": 0, + "executed": 1692785252 + }, + { + "status": 0, + "executed": 1692785553 + }, + { + "status": 0, + "executed": 1692785853 + }, + { + "status": 0, + "executed": 1692786153 + }, + { + "status": 0, + "executed": 1692786454 + }, + { + "status": 0, + "executed": 1692786754 + }, + { + "status": 0, + "executed": 1692787054 + }, + { + "status": 0, + "executed": 1692787354 + }, + { + "status": 0, + "executed": 1692787655 + }, + { + "status": 0, + "executed": 1692787955 + }, + { + "status": 0, + "executed": 1692788255 + }, + { + "status": 0, + "executed": 1692788555 + }, + { + "status": 0, + "executed": 1692788855 + }, + { + "status": 0, + "executed": 1692789155 + }, + { + "status": 0, + "executed": 1692789455 + } + ], + "issued": 1692789455, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/3.1338 ingressOctets=23154331207,egressOctets=31393836903,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789455, + "occurrences": 264, + "occurrences_watermark": 264, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-3.1338", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d7423e59-9cfc-4b3f-951c-236d01ad2991", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789456 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/3.1620 1253", + "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, + "duration": 0.59179652, + "executed": 1692789480, + "history": [ + { + "status": 0, + "executed": 1692783475 + }, + { + "status": 0, + "executed": 1692783775 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784376 + }, + { + "status": 0, + "executed": 1692784676 + }, + { + "status": 0, + "executed": 1692784977 + }, + { + "status": 0, + "executed": 1692785277 + }, + { + "status": 0, + "executed": 1692785577 + }, + { + "status": 0, + "executed": 1692785877 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786478 + }, + { + "status": 0, + "executed": 1692786778 + }, + { + "status": 0, + "executed": 1692787078 + }, + { + "status": 0, + "executed": 1692787379 + }, + { + "status": 0, + "executed": 1692787679 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788280 + }, + { + "status": 0, + "executed": 1692788580 + }, + { + "status": 0, + "executed": 1692788880 + }, + { + "status": 0, + "executed": 1692789180 + }, + { + "status": 0, + "executed": 1692789480 + } + ], + "issued": 1692789480, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/3.1620 ingressOctets=68008000075,egressOctets=38584331709,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789480, + "occurrences": 8009, + "occurrences_watermark": 8009, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-3.1620", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1d7ed124-620c-4065-bb74-e5ac8e0dfc66", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789481 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/3.2701 1326", + "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, + "duration": 0.610858843, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783482 + }, + { + "status": 0, + "executed": 1692783782 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784983 + }, + { + "status": 0, + "executed": 1692785283 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786184 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787385 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787986 + }, + { + "status": 0, + "executed": 1692788286 + }, + { + "status": 0, + "executed": 1692788586 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789486, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/3.2701 ingressOctets=6350387055,egressOctets=7771551048,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 8009, + "occurrences_watermark": 8009, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-3.2701", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4446008c-ec61-4f02-a217-a5549181de56", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789488 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/4 1288", + "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, + "duration": 0.541736144, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/4 ingressOctets=31038200,egressOctets=67702161,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d068161a-f0d4-4685-a45b-22be1a410963", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789607 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/4.1623 1254", + "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, + "duration": 0.499164872, + "executed": 1692789549, + "history": [ + { + "status": 0, + "executed": 1692783544 + }, + { + "status": 0, + "executed": 1692783845 + }, + { + "status": 0, + "executed": 1692784145 + }, + { + "status": 0, + "executed": 1692784445 + }, + { + "status": 0, + "executed": 1692784745 + }, + { + "status": 0, + "executed": 1692785045 + }, + { + "status": 0, + "executed": 1692785345 + }, + { + "status": 0, + "executed": 1692785645 + }, + { + "status": 0, + "executed": 1692785945 + }, + { + "status": 0, + "executed": 1692786245 + }, + { + "status": 0, + "executed": 1692786546 + }, + { + "status": 0, + "executed": 1692786846 + }, + { + "status": 0, + "executed": 1692787146 + }, + { + "status": 0, + "executed": 1692787447 + }, + { + "status": 0, + "executed": 1692787747 + }, + { + "status": 0, + "executed": 1692788048 + }, + { + "status": 0, + "executed": 1692788348 + }, + { + "status": 0, + "executed": 1692788648 + }, + { + "status": 0, + "executed": 1692788948 + }, + { + "status": 0, + "executed": 1692789248 + }, + { + "status": 0, + "executed": 1692789549 + } + ], + "issued": 1692789549, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/4.1623 ingressOctets=626936,egressOctets=272896,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789549, + "occurrences": 4463, + "occurrences_watermark": 4463, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-4.1623", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5d9670e4-c7f6-4047-8899-be9789cfbdc0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789550 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/5 1289", + "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, + "duration": 0.520576614, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/5 ingressOctets=537573276,egressOctets=43285032084,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6ad2e1e3-5b71-43fe-9e87-00425b5872d2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/5.2100 1526", + "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, + "duration": 0.540066159, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783525 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785026 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786228 + }, + { + "status": 0, + "executed": 1692786529 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788631 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789530, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/5.2100 ingressOctets=17903788,egressOctets=225327126,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-5.2100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "60367333-282b-4bf7-8dc2-b5d38cc74132", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/5.2110 1527", + "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, + "duration": 0.535849132, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/5.2110 ingressOctets=519654180,egressOctets=43059568795,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-5.2110", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "98c65270-9029-4039-8fbf-46d27cf26cdf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/6 1290", + "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, + "duration": 0.558770519, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783603 + }, + { + "status": 0, + "executed": 1692783903 + }, + { + "status": 0, + "executed": 1692784203 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/6 ingressOctets=13959561384851,egressOctets=14404079087225,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e92a64b5-34d1-415f-ada3-1e481e685205", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/6.0 1122", + "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, + "duration": 2.392946916, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/6.0 ingressOctets=13958875485633,egressOctets=14403361021784,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 5971, + "occurrences_watermark": 5971, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9565da04-2813-44f2-ba84-2bd8710fa137", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 1991, + "timestamp": 1692789521 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/7 1291", + "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, + "duration": 0.491014515, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/7 ingressOctets=118287082564,egressOctets=94285159268,ingressErrors=1,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b2c3d27d-9a47-40f7-a6e9-8558e3a85343", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.par.fr.geant.net xe-4/3/7.0 819", + "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, + "duration": 0.521856608, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785785 + }, + { + "status": 0, + "executed": 1692786085 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786686 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787286 + }, + { + "status": 0, + "executed": 1692787586 + }, + { + "status": 0, + "executed": 1692787886 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788787 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789687, + "output": "counters,hostname=mx1.par.fr.geant.net,interface_name=xe-4/3/7.0 ingressOctets=118286962843,egressOctets=94285031998,ingressErrors=0,egressErrors=0,ingressOctetsv6=104698225386,egressOctetsv6=81770810642,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 8010, + "occurrences_watermark": 8010, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.par.fr.geant.net-xe-4-3-7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.par.fr.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.par.fr.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c36fc26a-20e9-4f93-a44d-74e1deb93ace", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789688 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 660626", + "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, + "duration": 0.474961138, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784622 + }, + { + "status": 0, + "executed": 1692784922 + }, + { + "status": 0, + "executed": 1692785222 + }, + { + "status": 0, + "executed": 1692785522 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786123 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787324 + }, + { + "status": 0, + "executed": 1692787624 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788825 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "dscp32_counters,service_id=660626,hostname=mx1.poz.pl.geant.net,interface_name=ae11.333 ingressOctets=673381034108,egressOctets=1870202128283\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 1215, + "occurrences_watermark": 1215, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-PIONIER_AP1_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "61d2c7b0-2495-4dfa-8bc9-c1a573a3e4c7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789426 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.poz.pl.geant.net", + "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, + "duration": 5.720360805, + "executed": 1692789500, + "history": [ + { + "status": 1, + "executed": 1692783494 + }, + { + "status": 1, + "executed": 1692783794 + }, + { + "status": 1, + "executed": 1692784094 + }, + { + "status": 1, + "executed": 1692784394 + }, + { + "status": 1, + "executed": 1692784694 + }, + { + "status": 1, + "executed": 1692784995 + }, + { + "status": 1, + "executed": 1692785295 + }, + { + "status": 1, + "executed": 1692785595 + }, + { + "status": 1, + "executed": 1692785895 + }, + { + "status": 1, + "executed": 1692786196 + }, + { + "status": 1, + "executed": 1692786496 + }, + { + "status": 1, + "executed": 1692786799 + }, + { + "status": 1, + "executed": 1692787098 + }, + { + "status": 1, + "executed": 1692787399 + }, + { + "status": 1, + "executed": 1692787699 + }, + { + "status": 1, + "executed": 1692788000 + }, + { + "status": 1, + "executed": 1692788300 + }, + { + "status": 1, + "executed": 1692788600 + }, + { + "status": 1, + "executed": 1692788900 + }, + { + "status": 1, + "executed": 1692789200 + }, + { + "status": 1, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "2023-08-23 11:18:20,877 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:18:20,877 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:18:20,877 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:18:20,877 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.poz.pl.geant.net\n2023-08-23 11:18:20,882 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:18:20,908 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.poz.pl.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.1 octets=30054300888\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.8 octets=2539646485\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.9 octets=2236603862\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.10 octets=67899743033\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.11 octets=32426953067\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.12 octets=31828753360\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.13 octets=127315479294\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.15 octets=67238190059\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.18 octets=126558532788\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.19 octets=1842098841\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.20 octets=63826393258\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.21 octets=40060227901\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.23 octets=55443317061\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.24 octets=152863587012\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.25 octets=13030867899\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.29 octets=238410951259\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.32 octets=312784142241\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.34 octets=37417204973\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.35 octets=198579758971\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.36 octets=180971218851\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.41 octets=5534938413\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.44 octets=128019048959\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.49 octets=11670839994\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.52 octets=128843524437\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.53 octets=211252662787\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.61 octets=13147446703\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.222.67 octets=108669555393\nmulticast,hostname=mx1.poz.pl.geant.net,subscription=232.223.223.1 octets=3310545438391\n2023-08-23 11:18:25,999 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.2,232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.14,232.223.222.16,232.223.222.17,232.223.222.22,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.30,232.223.222.31,232.223.222.33,232.223.222.37,232.223.222.38,232.223.222.39,232.223.222.40,232.223.222.42,232.223.222.43,232.223.222.45,232.223.222.46,232.223.222.47,232.223.222.48,232.223.222.50,232.223.222.51,232.223.222.54,232.223.222.55,232.223.222.56,232.223.222.57,232.223.222.58,232.223.222.59,232.223.222.60,232.223.222.62,232.223.222.63,232.223.222.64,232.223.222.65,232.223.222.66,232.223.222.68,232.223.222.69,232.223.222.70,232.223.222.71,232.223.222.72,232.223.223.22\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 24401, + "occurrences_watermark": 24401, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.poz.pl.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8bedd4b2-e7f3-4491-b4fa-76056819bd5d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789506 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae0 598", + "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, + "duration": 0.534193168, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786264 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae0 ingressOctets=10550481537538421,egressOctets=3087084753578388,ingressErrors=28,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b7f611ba-a47a-4b96-b5a5-5bf0ef7796d1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae0.0 627", + "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, + "duration": 0.483637188, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787620 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae0.0 ingressOctets=10550762317896085,egressOctets=3087124572320955,ingressErrors=0,egressErrors=0,ingressOctetsv6=609972794574996,egressOctetsv6=5018435842181,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 24392, + "occurrences_watermark": 24392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4c77c17a-3f64-406e-bd15-e5b0199b27ab", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789722 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae1 599", + "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, + "duration": 0.482874999, + "executed": 1692789569, + "history": [ + { + "status": 0, + "executed": 1692783562 + }, + { + "status": 0, + "executed": 1692783862 + }, + { + "status": 0, + "executed": 1692784162 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785365 + }, + { + "status": 0, + "executed": 1692785665 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786566 + }, + { + "status": 0, + "executed": 1692786866 + }, + { + "status": 0, + "executed": 1692787166 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787767 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788668 + }, + { + "status": 0, + "executed": 1692788968 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789569 + } + ], + "issued": 1692789568, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae1 ingressOctets=50444807136,egressOctets=39301328762,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789569, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0b4c02b8-3d8e-4064-9b37-ad3cbf23533b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789569 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae1.103 821", + "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, + "duration": 0.487735518, + "executed": 1692789670, + "history": [ + { + "status": 0, + "executed": 1692783667 + }, + { + "status": 0, + "executed": 1692783967 + }, + { + "status": 0, + "executed": 1692784267 + }, + { + "status": 0, + "executed": 1692784567 + }, + { + "status": 0, + "executed": 1692784867 + }, + { + "status": 0, + "executed": 1692785167 + }, + { + "status": 0, + "executed": 1692785467 + }, + { + "status": 0, + "executed": 1692785768 + }, + { + "status": 0, + "executed": 1692786068 + }, + { + "status": 0, + "executed": 1692786368 + }, + { + "status": 0, + "executed": 1692786668 + }, + { + "status": 0, + "executed": 1692786968 + }, + { + "status": 0, + "executed": 1692787269 + }, + { + "status": 0, + "executed": 1692787569 + }, + { + "status": 0, + "executed": 1692787869 + }, + { + "status": 0, + "executed": 1692788169 + }, + { + "status": 0, + "executed": 1692788470 + }, + { + "status": 0, + "executed": 1692788770 + }, + { + "status": 0, + "executed": 1692789070 + }, + { + "status": 0, + "executed": 1692789371 + }, + { + "status": 0, + "executed": 1692789670 + } + ], + "issued": 1692789670, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae1.103 ingressOctets=39452875078,egressOctets=2562910530,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789670, + "occurrences": 24393, + "occurrences_watermark": 24393, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae1.103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bcaba8a6-f734-4eed-af05-5210340877d0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789671 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae1.21 841", + "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, + "duration": 0.502961682, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783496 + }, + { + "status": 0, + "executed": 1692783796 + }, + { + "status": 0, + "executed": 1692784097 + }, + { + "status": 0, + "executed": 1692784397 + }, + { + "status": 0, + "executed": 1692784697 + }, + { + "status": 0, + "executed": 1692784997 + }, + { + "status": 0, + "executed": 1692785297 + }, + { + "status": 0, + "executed": 1692785598 + }, + { + "status": 0, + "executed": 1692785898 + }, + { + "status": 0, + "executed": 1692786198 + }, + { + "status": 0, + "executed": 1692786498 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787099 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787700 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788901 + }, + { + "status": 0, + "executed": 1692789201 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae1.21 ingressOctets=249571507,egressOctets=273509358,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 24387, + "occurrences_watermark": 24387, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae1.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "06f234a9-5d86-4a48-9987-5ee3bc558a7c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae1.3005 840", + "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, + "duration": 0.555487445, + "executed": 1692789643, + "history": [ + { + "status": 0, + "executed": 1692783639 + }, + { + "status": 0, + "executed": 1692783939 + }, + { + "status": 0, + "executed": 1692784239 + }, + { + "status": 0, + "executed": 1692784539 + }, + { + "status": 0, + "executed": 1692784840 + }, + { + "status": 0, + "executed": 1692785140 + }, + { + "status": 0, + "executed": 1692785440 + }, + { + "status": 0, + "executed": 1692785740 + }, + { + "status": 0, + "executed": 1692786041 + }, + { + "status": 0, + "executed": 1692786342 + }, + { + "status": 0, + "executed": 1692786641 + }, + { + "status": 0, + "executed": 1692786941 + }, + { + "status": 0, + "executed": 1692787242 + }, + { + "status": 0, + "executed": 1692787542 + }, + { + "status": 0, + "executed": 1692787842 + }, + { + "status": 0, + "executed": 1692788142 + }, + { + "status": 0, + "executed": 1692788443 + }, + { + "status": 0, + "executed": 1692788746 + }, + { + "status": 0, + "executed": 1692789043 + }, + { + "status": 0, + "executed": 1692789344 + }, + { + "status": 0, + "executed": 1692789643 + } + ], + "issued": 1692789643, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae1.3005 ingressOctets=2223759158,egressOctets=34539963762,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789643, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae1.3005", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "105783b8-a154-41d0-9eed-a2ea46132b49", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789644 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae1.301 780", + "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, + "duration": 0.52811923, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783498 + }, + { + "status": 0, + "executed": 1692783798 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692784999 + }, + { + "status": 0, + "executed": 1692785299 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786200 + }, + { + "status": 0, + "executed": 1692786500 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787401 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788002 + }, + { + "status": 0, + "executed": 1692788302 + }, + { + "status": 0, + "executed": 1692788602 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae1.301 ingressOctets=3117561616,egressOctets=427251103,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae1.301", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3e0ee759-1203-4f22-9fba-e99893cb151a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae1.998 822", + "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, + "duration": 0.535944799, + "executed": 1692789675, + "history": [ + { + "status": 0, + "executed": 1692783672 + }, + { + "status": 0, + "executed": 1692783972 + }, + { + "status": 0, + "executed": 1692784272 + }, + { + "status": 0, + "executed": 1692784572 + }, + { + "status": 0, + "executed": 1692784872 + }, + { + "status": 0, + "executed": 1692785172 + }, + { + "status": 0, + "executed": 1692785472 + }, + { + "status": 0, + "executed": 1692785773 + }, + { + "status": 0, + "executed": 1692786073 + }, + { + "status": 0, + "executed": 1692786373 + }, + { + "status": 0, + "executed": 1692786673 + }, + { + "status": 0, + "executed": 1692786973 + }, + { + "status": 0, + "executed": 1692787274 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787874 + }, + { + "status": 0, + "executed": 1692788174 + }, + { + "status": 0, + "executed": 1692788475 + }, + { + "status": 0, + "executed": 1692788775 + }, + { + "status": 0, + "executed": 1692789075 + }, + { + "status": 0, + "executed": 1692789376 + }, + { + "status": 0, + "executed": 1692789675 + } + ], + "issued": 1692789675, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae1.998 ingressOctets=3355192024,egressOctets=1242148079,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789675, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae1.998", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b839fbed-2a9e-4b36-92f9-7891959c4e0c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789676 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11 616", + "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, + "duration": 0.533666548, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785982 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787182 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789584, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae11 ingressOctets=2849091767202026,egressOctets=7375506928919080,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d4f9b2e2-3f8a-4fe2-a7df-7b34b1575037", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.100 791", + "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, + "duration": 0.502633586, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae11.100 ingressOctets=628485829186837,egressOctets=2403322323119099,ingressErrors=0,egressErrors=0,ingressOctetsv6=259876316368872,egressOctetsv6=927143369876427,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 24387, + "occurrences_watermark": 24387, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae11.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7cd51507-fcd4-436e-a318-19ecfd5c3cd4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.111 785", + "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, + "duration": 0.537086965, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae11.111 ingressOctets=1352443136072316,egressOctets=2552671932955975,ingressErrors=0,egressErrors=0,ingressOctetsv6=1164340620266396,egressOctetsv6=2551174493305486,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae11.111", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f86b0497-5de4-4dbb-82b8-035707f7fa92", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.20 782", + "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, + "duration": 0.497105011, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783575 + }, + { + "status": 0, + "executed": 1692783875 + }, + { + "status": 0, + "executed": 1692784175 + }, + { + "status": 0, + "executed": 1692784475 + }, + { + "status": 0, + "executed": 1692784775 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785976 + }, + { + "status": 0, + "executed": 1692786276 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787477 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788078 + }, + { + "status": 0, + "executed": 1692788378 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789279 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789579, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae11.20 ingressOctets=53419698,egressOctets=254564187,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae11.20", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c38778f6-87c9-4362-9cad-519a1839e267", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789580 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.200 670", + "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, + "duration": 0.554686253, + "executed": 1692789663, + "history": [ + { + "status": 0, + "executed": 1692783659 + }, + { + "status": 0, + "executed": 1692783959 + }, + { + "status": 0, + "executed": 1692784259 + }, + { + "status": 0, + "executed": 1692784560 + }, + { + "status": 0, + "executed": 1692784860 + }, + { + "status": 0, + "executed": 1692785160 + }, + { + "status": 0, + "executed": 1692785460 + }, + { + "status": 0, + "executed": 1692785760 + }, + { + "status": 0, + "executed": 1692786061 + }, + { + "status": 0, + "executed": 1692786361 + }, + { + "status": 0, + "executed": 1692786660 + }, + { + "status": 0, + "executed": 1692786961 + }, + { + "status": 0, + "executed": 1692787261 + }, + { + "status": 0, + "executed": 1692787562 + }, + { + "status": 0, + "executed": 1692787862 + }, + { + "status": 0, + "executed": 1692788162 + }, + { + "status": 0, + "executed": 1692788462 + }, + { + "status": 0, + "executed": 1692788762 + }, + { + "status": 0, + "executed": 1692789063 + }, + { + "status": 0, + "executed": 1692789363 + }, + { + "status": 0, + "executed": 1692789663 + } + ], + "issued": 1692789663, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae11.200 ingressOctets=60155284,egressOctets=322418054,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789663, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae11.200", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a6b4ff13-0ed3-4d79-b0bc-7eb8e710a2e5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789663 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.3005 801", + "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, + "duration": 0.524371369, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789393 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae11.3005 ingressOctets=5822551607,egressOctets=13409054803,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae11.3005", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "2a2a3b75-9b50-4872-9fc9-d2dd0ab47ee2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789693 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.3220 678", + "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, + "duration": 0.474074118, + "executed": 1692789472, + "history": [ + { + "status": 0, + "executed": 1692783467 + }, + { + "status": 0, + "executed": 1692783767 + }, + { + "status": 0, + "executed": 1692784067 + }, + { + "status": 0, + "executed": 1692784368 + }, + { + "status": 0, + "executed": 1692784668 + }, + { + "status": 0, + "executed": 1692784968 + }, + { + "status": 0, + "executed": 1692785268 + }, + { + "status": 0, + "executed": 1692785569 + }, + { + "status": 0, + "executed": 1692785869 + }, + { + "status": 0, + "executed": 1692786169 + }, + { + "status": 0, + "executed": 1692786470 + }, + { + "status": 0, + "executed": 1692786770 + }, + { + "status": 0, + "executed": 1692787070 + }, + { + "status": 0, + "executed": 1692787370 + }, + { + "status": 0, + "executed": 1692787671 + }, + { + "status": 0, + "executed": 1692787971 + }, + { + "status": 0, + "executed": 1692788271 + }, + { + "status": 0, + "executed": 1692788571 + }, + { + "status": 0, + "executed": 1692788872 + }, + { + "status": 0, + "executed": 1692789172 + }, + { + "status": 0, + "executed": 1692789472 + } + ], + "issued": 1692789471, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae11.3220 ingressOctets=0,egressOctets=249937916,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789472, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae11.3220", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6bdcd1aa-a080-489a-995f-29f46948910d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789472 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.333 789", + "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, + "duration": 0.586926174, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787213 + }, + { + "status": 0, + "executed": 1692787514 + }, + { + "status": 0, + "executed": 1692787814 + }, + { + "status": 0, + "executed": 1692788115 + }, + { + "status": 0, + "executed": 1692788414 + }, + { + "status": 0, + "executed": 1692788715 + }, + { + "status": 0, + "executed": 1692789015 + }, + { + "status": 0, + "executed": 1692789315 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789615, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae11.333 ingressOctets=868156523565153,egressOctets=2419496981379058,ingressErrors=0,egressErrors=0,ingressOctetsv6=21587490892828,egressOctetsv6=13436056290456,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 24386, + "occurrences_watermark": 24386, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae11.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3d28b7cf-5627-4969-ba0d-a0d2caaf2490", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789616 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae11.416 803", + "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, + "duration": 0.525973728, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae11.416 ingressOctets=151779035,egressOctets=51424147,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae11.416", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "901f7c14-b6ec-4c71-899f-17e1816dd4d7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789608 + }, + { + "check": { + "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, + "duration": 0.521518988, + "executed": 1692789636, + "history": [ + { + "status": 0, + "executed": 1692783631 + }, + { + "status": 0, + "executed": 1692783931 + }, + { + "status": 0, + "executed": 1692784231 + }, + { + "status": 0, + "executed": 1692784531 + }, + { + "status": 0, + "executed": 1692784832 + }, + { + "status": 0, + "executed": 1692785132 + }, + { + "status": 0, + "executed": 1692785432 + }, + { + "status": 0, + "executed": 1692785733 + }, + { + "status": 0, + "executed": 1692786033 + }, + { + "status": 0, + "executed": 1692786333 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786933 + }, + { + "status": 0, + "executed": 1692787234 + }, + { + "status": 0, + "executed": 1692787534 + }, + { + "status": 0, + "executed": 1692787834 + }, + { + "status": 0, + "executed": 1692788134 + }, + { + "status": 0, + "executed": 1692788435 + }, + { + "status": 0, + "executed": 1692788735 + }, + { + "status": 0, + "executed": 1692789035 + }, + { + "status": 0, + "executed": 1692789336 + }, + { + "status": 0, + "executed": 1692789636 + } + ], + "issued": 1692789635, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae2 ingressOctets=688752489459783,egressOctets=3987521360490293,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789636, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e9fe7e37-b852-4036-9d22-0411d3a172c6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789636 + }, + { + "check": { + "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, + "duration": 0.511405245, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae2.0 ingressOctets=688747307941060,egressOctets=3987455796882004,ingressErrors=0,egressErrors=0,ingressOctetsv6=728793876492,egressOctetsv6=38974437898175,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e2de526f-2055-447d-a2e1-87c18cb18a7e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae4 602", + "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, + "duration": 0.541237471, + "executed": 1692789539, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785336 + }, + { + "status": 0, + "executed": 1692785636 + }, + { + "status": 0, + "executed": 1692785936 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786537 + }, + { + "status": 0, + "executed": 1692786837 + }, + { + "status": 0, + "executed": 1692787137 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787738 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789239 + }, + { + "status": 0, + "executed": 1692789539 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae4 ingressOctets=1443782841004383,egressOctets=783936837941029,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789539, + "occurrences": 23599, + "occurrences_watermark": 23599, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "56b52397-9940-4874-b4b2-30a3614206e0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae4.0 1070", + "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, + "duration": 0.564609909, + "executed": 1692789648, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784542 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785742 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786645 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787546 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789648 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae4.0 ingressOctets=1443924445777791,egressOctets=783976147421324,ingressErrors=0,egressErrors=0,ingressOctetsv6=325054616844739,egressOctetsv6=173741323619,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789648, + "occurrences": 23601, + "occurrences_watermark": 23601, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d7b5d8e2-fc82-4742-bea3-26efc24fb37a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae5 603", + "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, + "duration": 0.51030381, + "executed": 1692789690, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783987 + }, + { + "status": 0, + "executed": 1692784287 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785788 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786688 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787289 + }, + { + "status": 0, + "executed": 1692787589 + }, + { + "status": 0, + "executed": 1692787889 + }, + { + "status": 0, + "executed": 1692788189 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788790 + }, + { + "status": 0, + "executed": 1692789090 + }, + { + "status": 0, + "executed": 1692789390 + }, + { + "status": 0, + "executed": 1692789690 + } + ], + "issued": 1692789690, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae5 ingressOctets=286819734587854,egressOctets=1043120748027709,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789690, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9dacac5f-3609-49e5-9270-f134a3ba8deb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789690 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae5.0 762", + "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, + "duration": 0.526666673, + "executed": 1692789667, + "history": [ + { + "status": 0, + "executed": 1692783664 + }, + { + "status": 0, + "executed": 1692783964 + }, + { + "status": 0, + "executed": 1692784264 + }, + { + "status": 0, + "executed": 1692784564 + }, + { + "status": 0, + "executed": 1692784864 + }, + { + "status": 0, + "executed": 1692785164 + }, + { + "status": 0, + "executed": 1692785464 + }, + { + "status": 0, + "executed": 1692785765 + }, + { + "status": 0, + "executed": 1692786065 + }, + { + "status": 0, + "executed": 1692786365 + }, + { + "status": 0, + "executed": 1692786665 + }, + { + "status": 0, + "executed": 1692786965 + }, + { + "status": 0, + "executed": 1692787266 + }, + { + "status": 0, + "executed": 1692787566 + }, + { + "status": 0, + "executed": 1692787866 + }, + { + "status": 0, + "executed": 1692788167 + }, + { + "status": 0, + "executed": 1692788467 + }, + { + "status": 0, + "executed": 1692788767 + }, + { + "status": 0, + "executed": 1692789067 + }, + { + "status": 0, + "executed": 1692789368 + }, + { + "status": 0, + "executed": 1692789667 + } + ], + "issued": 1692789667, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae5.0 ingressOctets=286819320547444,egressOctets=1043120287243706,ingressErrors=0,egressErrors=0,ingressOctetsv6=1301993832309,egressOctetsv6=37918374275,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789667, + "occurrences": 24393, + "occurrences_watermark": 24393, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae5.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bd72d97d-d2da-4d9d-b70d-4b4ecbac0ecb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789668 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae6 604", + "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, + "duration": 0.516890139, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788192 + }, + { + "status": 0, + "executed": 1692788492 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae6 ingressOctets=60210910569977,egressOctets=161257806272205,ingressErrors=0,egressErrors=2,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 21833, + "occurrences_watermark": 21833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc734908-4f1b-410c-a7ef-26584f1ae64d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ae6.0 1072", + "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, + "duration": 0.532386652, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ae6.0 ingressOctets=60210821181735,egressOctets=161257730908365,ingressErrors=0,egressErrors=0,ingressOctetsv6=246119732904,egressOctetsv6=5065918934,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 21833, + "occurrences_watermark": 21833, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ae6.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "881c6868-8238-4595-8f98-fac8cb3ad754", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-3/1/0 753", + "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, + "duration": 0.656838253, + "executed": 1692789548, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783843 + }, + { + "status": 0, + "executed": 1692784143 + }, + { + "status": 0, + "executed": 1692784443 + }, + { + "status": 0, + "executed": 1692784743 + }, + { + "status": 0, + "executed": 1692785043 + }, + { + "status": 0, + "executed": 1692785343 + }, + { + "status": 0, + "executed": 1692785643 + }, + { + "status": 0, + "executed": 1692785943 + }, + { + "status": 0, + "executed": 1692786244 + }, + { + "status": 0, + "executed": 1692786544 + }, + { + "status": 0, + "executed": 1692786844 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787445 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788046 + }, + { + "status": 0, + "executed": 1692788346 + }, + { + "status": 0, + "executed": 1692788646 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789548 + } + ], + "issued": 1692789548, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-3/1/0 ingressOctets=10550454397959150,egressOctets=3087072653757792,ingressErrors=28,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789548, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-3-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9bd12084-177c-4b7e-abd2-30538df545cb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789549 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-3/3/0 764", + "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, + "duration": 0.506707374, + "executed": 1692789708, + "history": [ + { + "status": 0, + "executed": 1692783703 + }, + { + "status": 0, + "executed": 1692784004 + }, + { + "status": 0, + "executed": 1692784304 + }, + { + "status": 0, + "executed": 1692784604 + }, + { + "status": 0, + "executed": 1692784904 + }, + { + "status": 0, + "executed": 1692785204 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785805 + }, + { + "status": 0, + "executed": 1692786105 + }, + { + "status": 0, + "executed": 1692786406 + }, + { + "status": 0, + "executed": 1692786705 + }, + { + "status": 0, + "executed": 1692787005 + }, + { + "status": 0, + "executed": 1692787306 + }, + { + "status": 0, + "executed": 1692787606 + }, + { + "status": 0, + "executed": 1692787906 + }, + { + "status": 0, + "executed": 1692788207 + }, + { + "status": 0, + "executed": 1692788507 + }, + { + "status": 0, + "executed": 1692788807 + }, + { + "status": 0, + "executed": 1692789108 + }, + { + "status": 0, + "executed": 1692789408 + }, + { + "status": 0, + "executed": 1692789708 + } + ], + "issued": 1692789707, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-3/3/0 ingressOctets=2849152827593416,egressOctets=7375765392663123,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789708, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-3-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "704b40c3-6062-4130-8064-32aa62cdd6c7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789708 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-4/0/0 748", + "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, + "duration": 0.499614167, + "executed": 1692789494, + "history": [ + { + "status": 0, + "executed": 1692783490 + }, + { + "status": 0, + "executed": 1692783790 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784991 + }, + { + "status": 0, + "executed": 1692785291 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786492 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787393 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787994 + }, + { + "status": 0, + "executed": 1692788294 + }, + { + "status": 0, + "executed": 1692788594 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789494 + } + ], + "issued": 1692789494, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-4/0/0 ingressOctets=688744349481543,egressOctets=3987421433929335,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789494, + "occurrences": 24386, + "occurrences_watermark": 24386, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-4-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8d4b8aad-d76d-472e-bc6a-cda303da6b81", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789495 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-5/0/0 814", + "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, + "duration": 0.529694257, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783567 + }, + { + "status": 0, + "executed": 1692783867 + }, + { + "status": 0, + "executed": 1692784167 + }, + { + "status": 0, + "executed": 1692784467 + }, + { + "status": 0, + "executed": 1692784767 + }, + { + "status": 0, + "executed": 1692785067 + }, + { + "status": 0, + "executed": 1692785367 + }, + { + "status": 0, + "executed": 1692785667 + }, + { + "status": 0, + "executed": 1692785968 + }, + { + "status": 0, + "executed": 1692786268 + }, + { + "status": 0, + "executed": 1692786568 + }, + { + "status": 0, + "executed": 1692786868 + }, + { + "status": 0, + "executed": 1692787168 + }, + { + "status": 0, + "executed": 1692787469 + }, + { + "status": 0, + "executed": 1692787769 + }, + { + "status": 0, + "executed": 1692788070 + }, + { + "status": 0, + "executed": 1692788370 + }, + { + "status": 0, + "executed": 1692788670 + }, + { + "status": 0, + "executed": 1692788970 + }, + { + "status": 0, + "executed": 1692789271 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789570, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-5/0/0 ingressOctets=1314777170230177,egressOctets=169893664942724,ingressErrors=24,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-5-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4c06c617-9c84-4a98-ab99-aa615f35f79b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-7/0/2 1052", + "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, + "duration": 0.498751408, + "executed": 1692789706, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785503 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789706 + } + ], + "issued": 1692789706, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-7/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789706, + "occurrences": 24274, + "occurrences_watermark": 24274, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-7-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a9b6780b-3f50-4859-b767-1715f4d60cb6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789707 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-7/0/5 1054", + "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, + "duration": 0.483505256, + "executed": 1692789614, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786612 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787212 + }, + { + "status": 0, + "executed": 1692787512 + }, + { + "status": 0, + "executed": 1692787813 + }, + { + "status": 0, + "executed": 1692788113 + }, + { + "status": 0, + "executed": 1692788413 + }, + { + "status": 0, + "executed": 1692788714 + }, + { + "status": 0, + "executed": 1692789014 + }, + { + "status": 0, + "executed": 1692789314 + }, + { + "status": 0, + "executed": 1692789614 + } + ], + "issued": 1692789614, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-7/0/5 ingressOctets=481597785903856,egressOctets=261343390301859,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789614, + "occurrences": 24369, + "occurrences_watermark": 24369, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-7-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4afb696d-6f76-401f-abc8-97aab8775b8e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789615 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-7/1/2 1060", + "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, + "duration": 0.507621073, + "executed": 1692789701, + "history": [ + { + "status": 0, + "executed": 1692783697 + }, + { + "status": 0, + "executed": 1692783997 + }, + { + "status": 0, + "executed": 1692784297 + }, + { + "status": 0, + "executed": 1692784598 + }, + { + "status": 0, + "executed": 1692784898 + }, + { + "status": 0, + "executed": 1692785198 + }, + { + "status": 0, + "executed": 1692785498 + }, + { + "status": 0, + "executed": 1692785798 + }, + { + "status": 0, + "executed": 1692786099 + }, + { + "status": 0, + "executed": 1692786398 + }, + { + "status": 0, + "executed": 1692786699 + }, + { + "status": 0, + "executed": 1692786999 + }, + { + "status": 0, + "executed": 1692787299 + }, + { + "status": 0, + "executed": 1692787599 + }, + { + "status": 0, + "executed": 1692787899 + }, + { + "status": 0, + "executed": 1692788200 + }, + { + "status": 0, + "executed": 1692788500 + }, + { + "status": 0, + "executed": 1692788800 + }, + { + "status": 0, + "executed": 1692789101 + }, + { + "status": 0, + "executed": 1692789401 + }, + { + "status": 0, + "executed": 1692789701 + } + ], + "issued": 1692789700, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-7/1/2 ingressOctets=481350746105723,egressOctets=261300206635582,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789701, + "occurrences": 24368, + "occurrences_watermark": 24368, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-7-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b55bd425-57b8-4ebc-8747-d394131d7795", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789701 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-7/1/5 1061", + "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, + "duration": 0.487507012, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787535 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-7/1/5 ingressOctets=480993050379307,egressOctets=261336369095093,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 24368, + "occurrences_watermark": 24368, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-7-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e6c510ab-b405-42df-92ec-9271a9d1b088", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-8/0/2 1048", + "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, + "duration": 0.533240274, + "executed": 1692789557, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789557 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-8/0/2 ingressOctets=60201964328087,egressOctets=161216396820978,ingressErrors=0,egressErrors=2,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789557, + "occurrences": 24365, + "occurrences_watermark": 24365, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-8-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a21910eb-c3a6-4fa3-b6c5-e2a167bae370", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789557 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-8/0/5 1049", + "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, + "duration": 0.537676283, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-8/0/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 24367, + "occurrences_watermark": 24367, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-8-0-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4c402f53-2a8c-404d-b488-8303d120c8fc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-8/1/2 1057", + "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, + "duration": 2.31921988, + "executed": 1692789519, + "history": [ + { + "status": 0, + "executed": 1692783513 + }, + { + "status": 0, + "executed": 1692783813 + }, + { + "status": 0, + "executed": 1692784114 + }, + { + "status": 0, + "executed": 1692784414 + }, + { + "status": 0, + "executed": 1692784714 + }, + { + "status": 0, + "executed": 1692785014 + }, + { + "status": 0, + "executed": 1692785314 + }, + { + "status": 0, + "executed": 1692785615 + }, + { + "status": 0, + "executed": 1692785915 + }, + { + "status": 0, + "executed": 1692786216 + }, + { + "status": 0, + "executed": 1692786516 + }, + { + "status": 0, + "executed": 1692786816 + }, + { + "status": 0, + "executed": 1692787116 + }, + { + "status": 0, + "executed": 1692787416 + }, + { + "status": 0, + "executed": 1692787717 + }, + { + "status": 0, + "executed": 1692788017 + }, + { + "status": 0, + "executed": 1692788317 + }, + { + "status": 0, + "executed": 1692788617 + }, + { + "status": 0, + "executed": 1692788918 + }, + { + "status": 0, + "executed": 1692789218 + }, + { + "status": 0, + "executed": 1692789519 + } + ], + "issued": 1692789518, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-8/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789519, + "occurrences": 24369, + "occurrences_watermark": 24369, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-8-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5e8e964e-5e07-4544-8abd-3585068c3376", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789521 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net et-8/1/5 1056", + "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, + "duration": 0.510058753, + "executed": 1692789605, + "history": [ + { + "status": 0, + "executed": 1692783600 + }, + { + "status": 0, + "executed": 1692783900 + }, + { + "status": 0, + "executed": 1692784200 + }, + { + "status": 0, + "executed": 1692784500 + }, + { + "status": 0, + "executed": 1692784801 + }, + { + "status": 0, + "executed": 1692785101 + }, + { + "status": 0, + "executed": 1692785401 + }, + { + "status": 0, + "executed": 1692785701 + }, + { + "status": 0, + "executed": 1692786001 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786602 + }, + { + "status": 0, + "executed": 1692786902 + }, + { + "status": 0, + "executed": 1692787202 + }, + { + "status": 0, + "executed": 1692787502 + }, + { + "status": 0, + "executed": 1692787803 + }, + { + "status": 0, + "executed": 1692788103 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788704 + }, + { + "status": 0, + "executed": 1692789004 + }, + { + "status": 0, + "executed": 1692789304 + }, + { + "status": 0, + "executed": 1692789605 + } + ], + "issued": 1692789604, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=et-8/1/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789605, + "occurrences": 24368, + "occurrences_watermark": 24368, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-et-8-1-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "94648a4f-0205-4ae8-998b-399bbdbfb211", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789605 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/0 578", + "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, + "duration": 0.57975875, + "executed": 1692789560, + "history": [ + { + "status": 0, + "executed": 1692783555 + }, + { + "status": 0, + "executed": 1692783855 + }, + { + "status": 0, + "executed": 1692784155 + }, + { + "status": 0, + "executed": 1692784455 + }, + { + "status": 0, + "executed": 1692784755 + }, + { + "status": 0, + "executed": 1692785056 + }, + { + "status": 0, + "executed": 1692785356 + }, + { + "status": 0, + "executed": 1692785656 + }, + { + "status": 0, + "executed": 1692785957 + }, + { + "status": 0, + "executed": 1692786257 + }, + { + "status": 0, + "executed": 1692786557 + }, + { + "status": 0, + "executed": 1692786857 + }, + { + "status": 0, + "executed": 1692787157 + }, + { + "status": 0, + "executed": 1692787458 + }, + { + "status": 0, + "executed": 1692787758 + }, + { + "status": 0, + "executed": 1692788059 + }, + { + "status": 0, + "executed": 1692788359 + }, + { + "status": 0, + "executed": 1692788659 + }, + { + "status": 0, + "executed": 1692788959 + }, + { + "status": 0, + "executed": 1692789260 + }, + { + "status": 0, + "executed": 1692789560 + } + ], + "issued": 1692789560, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789560, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cf8204bd-638a-4bea-8d46-d5e55f31211d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789560 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/1 579", + "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, + "duration": 0.521785127, + "executed": 1692789496, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784092 + }, + { + "status": 0, + "executed": 1692784392 + }, + { + "status": 0, + "executed": 1692784692 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785593 + }, + { + "status": 0, + "executed": 1692785893 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786794 + }, + { + "status": 0, + "executed": 1692787094 + }, + { + "status": 0, + "executed": 1692787395 + }, + { + "status": 0, + "executed": 1692787695 + }, + { + "status": 0, + "executed": 1692787996 + }, + { + "status": 0, + "executed": 1692788296 + }, + { + "status": 0, + "executed": 1692788596 + }, + { + "status": 0, + "executed": 1692788896 + }, + { + "status": 0, + "executed": 1692789196 + }, + { + "status": 0, + "executed": 1692789496 + } + ], + "issued": 1692789496, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789496, + "occurrences": 24387, + "occurrences_watermark": 24387, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "80d14fe9-7a7a-4f2f-8aad-7c6e30dee205", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789496 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/2 580", + "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, + "duration": 0.546420494, + "executed": 1692789657, + "history": [ + { + "status": 0, + "executed": 1692783653 + }, + { + "status": 0, + "executed": 1692783953 + }, + { + "status": 0, + "executed": 1692784253 + }, + { + "status": 0, + "executed": 1692784553 + }, + { + "status": 0, + "executed": 1692784854 + }, + { + "status": 0, + "executed": 1692785154 + }, + { + "status": 0, + "executed": 1692785454 + }, + { + "status": 0, + "executed": 1692785754 + }, + { + "status": 0, + "executed": 1692786055 + }, + { + "status": 0, + "executed": 1692786355 + }, + { + "status": 0, + "executed": 1692786654 + }, + { + "status": 0, + "executed": 1692786955 + }, + { + "status": 0, + "executed": 1692787255 + }, + { + "status": 0, + "executed": 1692787555 + }, + { + "status": 0, + "executed": 1692787856 + }, + { + "status": 0, + "executed": 1692788156 + }, + { + "status": 0, + "executed": 1692788456 + }, + { + "status": 0, + "executed": 1692788756 + }, + { + "status": 0, + "executed": 1692789057 + }, + { + "status": 0, + "executed": 1692789357 + }, + { + "status": 0, + "executed": 1692789657 + } + ], + "issued": 1692789657, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789657, + "occurrences": 1737, + "occurrences_watermark": 1737, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b7fe6af8-49bc-435c-a0ad-23e0e32cc97e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789657 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/3 581", + "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, + "duration": 0.55083319, + "executed": 1692789536, + "history": [ + { + "status": 0, + "executed": 1692783532 + }, + { + "status": 0, + "executed": 1692783832 + }, + { + "status": 0, + "executed": 1692784133 + }, + { + "status": 0, + "executed": 1692784433 + }, + { + "status": 0, + "executed": 1692784733 + }, + { + "status": 0, + "executed": 1692785033 + }, + { + "status": 0, + "executed": 1692785333 + }, + { + "status": 0, + "executed": 1692785633 + }, + { + "status": 0, + "executed": 1692785933 + }, + { + "status": 0, + "executed": 1692786233 + }, + { + "status": 0, + "executed": 1692786534 + }, + { + "status": 0, + "executed": 1692786834 + }, + { + "status": 0, + "executed": 1692787134 + }, + { + "status": 0, + "executed": 1692787435 + }, + { + "status": 0, + "executed": 1692787735 + }, + { + "status": 0, + "executed": 1692788036 + }, + { + "status": 0, + "executed": 1692788336 + }, + { + "status": 0, + "executed": 1692788636 + }, + { + "status": 0, + "executed": 1692788936 + }, + { + "status": 0, + "executed": 1692789236 + }, + { + "status": 0, + "executed": 1692789536 + } + ], + "issued": 1692789536, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789536, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bb0f109f-82f0-4440-9945-523f231528b7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789537 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/4 582", + "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, + "duration": 0.538749717, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/2/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "00af56d6-a7c7-4026-ad5c-50f8e0c27893", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/5 583", + "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, + "duration": 0.648955776, + "executed": 1692789624, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784518 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786020 + }, + { + "status": 0, + "executed": 1692786320 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788423 + }, + { + "status": 0, + "executed": 1692788723 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789324 + }, + { + "status": 0, + "executed": 1692789624 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789624, + "occurrences": 24387, + "occurrences_watermark": 24387, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e23f7526-cc22-467e-ba28-f1d100e11e40", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789624 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/6 584", + "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, + "duration": 0.461556538, + "executed": 1692789516, + "history": [ + { + "status": 0, + "executed": 1692783511 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785012 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785613 + }, + { + "status": 0, + "executed": 1692785913 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786514 + }, + { + "status": 0, + "executed": 1692786814 + }, + { + "status": 0, + "executed": 1692787114 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787715 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788916 + }, + { + "status": 0, + "executed": 1692789216 + }, + { + "status": 0, + "executed": 1692789516 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789516, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "cbc503e0-764b-4d0a-b0a9-e8a51e22cadb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/7 585", + "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, + "duration": 0.572622916, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8b9ec230-ae18-41f8-821c-ece3f59fa36c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/8 586", + "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, + "duration": 0.607603972, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784497 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785697 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786598 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "748d95fa-5dd0-4939-9397-e4e628d50624", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789601 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/2/9 587", + "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, + "duration": 0.48147065, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 24387, + "occurrences_watermark": 24387, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bea51377-d128-4d8f-ac19-ee6d0855d6b8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/0 588", + "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, + "duration": 0.527014787, + "executed": 1692789564, + "history": [ + { + "status": 0, + "executed": 1692783559 + }, + { + "status": 0, + "executed": 1692783859 + }, + { + "status": 0, + "executed": 1692784159 + }, + { + "status": 0, + "executed": 1692784460 + }, + { + "status": 0, + "executed": 1692784760 + }, + { + "status": 0, + "executed": 1692785060 + }, + { + "status": 0, + "executed": 1692785360 + }, + { + "status": 0, + "executed": 1692785660 + }, + { + "status": 0, + "executed": 1692785960 + }, + { + "status": 0, + "executed": 1692786261 + }, + { + "status": 0, + "executed": 1692786562 + }, + { + "status": 0, + "executed": 1692786862 + }, + { + "status": 0, + "executed": 1692787162 + }, + { + "status": 0, + "executed": 1692787462 + }, + { + "status": 0, + "executed": 1692787763 + }, + { + "status": 0, + "executed": 1692788063 + }, + { + "status": 0, + "executed": 1692788363 + }, + { + "status": 0, + "executed": 1692788664 + }, + { + "status": 0, + "executed": 1692788964 + }, + { + "status": 0, + "executed": 1692789264 + }, + { + "status": 0, + "executed": 1692789564 + } + ], + "issued": 1692789564, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789564, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8ab9d688-1287-4b8e-932d-2987b6a8c877", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789565 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/1 589", + "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, + "duration": 0.511022819, + "executed": 1692789567, + "history": [ + { + "status": 0, + "executed": 1692783563 + }, + { + "status": 0, + "executed": 1692783863 + }, + { + "status": 0, + "executed": 1692784163 + }, + { + "status": 0, + "executed": 1692784465 + }, + { + "status": 0, + "executed": 1692784764 + }, + { + "status": 0, + "executed": 1692785064 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785965 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787466 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788067 + }, + { + "status": 0, + "executed": 1692788367 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789268 + }, + { + "status": 0, + "executed": 1692789567 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789567, + "occurrences": 24386, + "occurrences_watermark": 24386, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1c58635e-e13b-4ac1-92a3-1d01e151dfdc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/2 590", + "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, + "duration": 0.49291596, + "executed": 1692789695, + "history": [ + { + "status": 0, + "executed": 1692783692 + }, + { + "status": 0, + "executed": 1692783993 + }, + { + "status": 0, + "executed": 1692784293 + }, + { + "status": 0, + "executed": 1692784593 + }, + { + "status": 0, + "executed": 1692784893 + }, + { + "status": 0, + "executed": 1692785193 + }, + { + "status": 0, + "executed": 1692785493 + }, + { + "status": 0, + "executed": 1692785794 + }, + { + "status": 0, + "executed": 1692786094 + }, + { + "status": 0, + "executed": 1692786395 + }, + { + "status": 0, + "executed": 1692786694 + }, + { + "status": 0, + "executed": 1692786994 + }, + { + "status": 0, + "executed": 1692787295 + }, + { + "status": 0, + "executed": 1692787595 + }, + { + "status": 0, + "executed": 1692787895 + }, + { + "status": 0, + "executed": 1692788195 + }, + { + "status": 0, + "executed": 1692788495 + }, + { + "status": 0, + "executed": 1692788796 + }, + { + "status": 0, + "executed": 1692789096 + }, + { + "status": 0, + "executed": 1692789396 + }, + { + "status": 0, + "executed": 1692789695 + } + ], + "issued": 1692789695, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789695, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dbd5da17-e28d-46e5-a330-4cdf542b70f3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789696 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/3 591", + "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, + "duration": 0.547425872, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 24384, + "occurrences_watermark": 24384, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5b236e43-2b40-45f6-a6b6-6555dd958010", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/4 592", + "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, + "duration": 0.511540877, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "74f97d6a-8710-4d15-8876-2b8d9c903c13", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/5 593", + "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, + "duration": 0.486170886, + "executed": 1692789545, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789245 + }, + { + "status": 0, + "executed": 1692789545 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789545, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9228bf15-1d64-433e-a17e-9ee848f27baf", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net ge-0/3/6 594", + "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, + "duration": 0.547270794, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=ge-0/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-ge-0-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "79fd366e-e4c9-4d5f-86b5-32d751ed526e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789538 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net lt-3/3/0 662", + "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, + "duration": 0.541072808, + "executed": 1692789584, + "history": [ + { + "status": 0, + "executed": 1692783580 + }, + { + "status": 0, + "executed": 1692783880 + }, + { + "status": 0, + "executed": 1692784180 + }, + { + "status": 0, + "executed": 1692784480 + }, + { + "status": 0, + "executed": 1692784780 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785982 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786581 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787182 + }, + { + "status": 0, + "executed": 1692787482 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788083 + }, + { + "status": 0, + "executed": 1692788383 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789284 + }, + { + "status": 0, + "executed": 1692789584 + } + ], + "issued": 1692789584, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=lt-3/3/0 ingressOctets=682512101255,egressOctets=684473656911,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789584, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-lt-3-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "226d4271-a7de-44ba-8f87-0a98219636d2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789585 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net lt-3/3/0.16 663", + "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, + "duration": 0.509814306, + "executed": 1692789546, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787144 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787745 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788946 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789546 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=lt-3/3/0.16 ingressOctets=64401441,egressOctets=684405941095,ingressErrors=0,egressErrors=0,ingressOctetsv6=130224,egressOctetsv6=713130129,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789546, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-lt-3-3-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "de8d81b2-bc89-4db8-b2c4-61445eb9da27", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789547 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net lt-3/3/0.61 664", + "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, + "duration": 0.534437095, + "executed": 1692789570, + "history": [ + { + "status": 0, + "executed": 1692783566 + }, + { + "status": 0, + "executed": 1692783866 + }, + { + "status": 0, + "executed": 1692784166 + }, + { + "status": 0, + "executed": 1692784466 + }, + { + "status": 0, + "executed": 1692784766 + }, + { + "status": 0, + "executed": 1692785066 + }, + { + "status": 0, + "executed": 1692785366 + }, + { + "status": 0, + "executed": 1692785666 + }, + { + "status": 0, + "executed": 1692785967 + }, + { + "status": 0, + "executed": 1692786267 + }, + { + "status": 0, + "executed": 1692786567 + }, + { + "status": 0, + "executed": 1692786867 + }, + { + "status": 0, + "executed": 1692787167 + }, + { + "status": 0, + "executed": 1692787468 + }, + { + "status": 0, + "executed": 1692787768 + }, + { + "status": 0, + "executed": 1692788069 + }, + { + "status": 0, + "executed": 1692788369 + }, + { + "status": 0, + "executed": 1692788669 + }, + { + "status": 0, + "executed": 1692788969 + }, + { + "status": 0, + "executed": 1692789270 + }, + { + "status": 0, + "executed": 1692789570 + } + ], + "issued": 1692789569, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=lt-3/3/0.61 ingressOctets=682446629242,egressOctets=64685305,ingressErrors=0,egressErrors=0,ingressOctetsv6=15477336399,egressOctetsv6=910182,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789570, + "occurrences": 24387, + "occurrences_watermark": 24387, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-lt-3-3-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a3536881-4a82-4d89-a92d-fe80c34cfacb", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789571 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-0/0/0 574", + "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, + "duration": 0.519391876, + "executed": 1692789650, + "history": [ + { + "status": 0, + "executed": 1692783646 + }, + { + "status": 0, + "executed": 1692783946 + }, + { + "status": 0, + "executed": 1692784246 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784847 + }, + { + "status": 0, + "executed": 1692785147 + }, + { + "status": 0, + "executed": 1692785447 + }, + { + "status": 0, + "executed": 1692785747 + }, + { + "status": 0, + "executed": 1692786047 + }, + { + "status": 0, + "executed": 1692786348 + }, + { + "status": 0, + "executed": 1692786648 + }, + { + "status": 0, + "executed": 1692786948 + }, + { + "status": 0, + "executed": 1692787248 + }, + { + "status": 0, + "executed": 1692787548 + }, + { + "status": 0, + "executed": 1692787849 + }, + { + "status": 0, + "executed": 1692788149 + }, + { + "status": 0, + "executed": 1692788449 + }, + { + "status": 0, + "executed": 1692788749 + }, + { + "status": 0, + "executed": 1692789050 + }, + { + "status": 0, + "executed": 1692789350 + }, + { + "status": 0, + "executed": 1692789650 + } + ], + "issued": 1692789650, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-0/0/0 ingressOctets=71803779292699,egressOctets=260688334132812,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789650, + "occurrences": 24393, + "occurrences_watermark": 24393, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3e2ac3c5-f2f8-4086-a718-45c8dba3c8c0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789651 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-0/0/1 575", + "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, + "duration": 0.769925024, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-0/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e6d6ef1d-2687-4dc7-90b8-f35b2854cfa3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-0/1/0 576", + "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, + "duration": 0.538528099, + "executed": 1692789612, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784808 + }, + { + "status": 0, + "executed": 1692785108 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786010 + }, + { + "status": 0, + "executed": 1692786310 + }, + { + "status": 0, + "executed": 1692786609 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789612 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-0/1/0 ingressOctets=71819449182395,egressOctets=260871713998420,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789612, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-0-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c02b2d9-9cd0-4614-a380-896f4d866af8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-0/1/1 577", + "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, + "duration": 0.479628911, + "executed": 1692789673, + "history": [ + { + "status": 0, + "executed": 1692783669 + }, + { + "status": 0, + "executed": 1692783969 + }, + { + "status": 0, + "executed": 1692784269 + }, + { + "status": 0, + "executed": 1692784570 + }, + { + "status": 0, + "executed": 1692784870 + }, + { + "status": 0, + "executed": 1692785170 + }, + { + "status": 0, + "executed": 1692785470 + }, + { + "status": 0, + "executed": 1692785770 + }, + { + "status": 0, + "executed": 1692786070 + }, + { + "status": 0, + "executed": 1692786371 + }, + { + "status": 0, + "executed": 1692786671 + }, + { + "status": 0, + "executed": 1692786971 + }, + { + "status": 0, + "executed": 1692787271 + }, + { + "status": 0, + "executed": 1692787572 + }, + { + "status": 0, + "executed": 1692787872 + }, + { + "status": 0, + "executed": 1692788172 + }, + { + "status": 0, + "executed": 1692788472 + }, + { + "status": 0, + "executed": 1692788772 + }, + { + "status": 0, + "executed": 1692789073 + }, + { + "status": 0, + "executed": 1692789373 + }, + { + "status": 0, + "executed": 1692789673 + } + ], + "issued": 1692789673, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-0/1/1 ingressOctets=71481545026808,egressOctets=260789100084312,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789673, + "occurrences": 24393, + "occurrences_watermark": 24393, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a3fe8a0b-fdd7-4e83-8665-4299b88abd16", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789674 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/0 558", + "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, + "duration": 0.485606138, + "executed": 1692789579, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785075 + }, + { + "status": 0, + "executed": 1692785375 + }, + { + "status": 0, + "executed": 1692785675 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786576 + }, + { + "status": 0, + "executed": 1692786876 + }, + { + "status": 0, + "executed": 1692787176 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787777 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788678 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789579 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/0/0 ingressOctets=133064885524618,egressOctets=697457452067297,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=2113785\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789579, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6b886aa2-bf02-4963-be96-27dc90c594bd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/0.100 624", + "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, + "duration": 0.584794745, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785490 + }, + { + "status": 0, + "executed": 1692785790 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787291 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787891 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788792 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789692, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/0/0.100 ingressOctets=5280024204908,egressOctets=6754622597893,ingressErrors=0,egressErrors=0,ingressOctetsv6=59677647,egressOctetsv6=267921495,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-0-0.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1335e19e-67b1-44ea-bef5-40c075d32f59", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/0.333 625", + "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, + "duration": 0.645117255, + "executed": 1692789592, + "history": [ + { + "status": 0, + "executed": 1692783588 + }, + { + "status": 0, + "executed": 1692783888 + }, + { + "status": 0, + "executed": 1692784188 + }, + { + "status": 0, + "executed": 1692784488 + }, + { + "status": 0, + "executed": 1692784788 + }, + { + "status": 0, + "executed": 1692785088 + }, + { + "status": 0, + "executed": 1692785388 + }, + { + "status": 0, + "executed": 1692785688 + }, + { + "status": 0, + "executed": 1692785989 + }, + { + "status": 0, + "executed": 1692786289 + }, + { + "status": 0, + "executed": 1692786589 + }, + { + "status": 0, + "executed": 1692786889 + }, + { + "status": 0, + "executed": 1692787190 + }, + { + "status": 0, + "executed": 1692787490 + }, + { + "status": 0, + "executed": 1692787790 + }, + { + "status": 0, + "executed": 1692788091 + }, + { + "status": 0, + "executed": 1692788391 + }, + { + "status": 0, + "executed": 1692788691 + }, + { + "status": 0, + "executed": 1692788991 + }, + { + "status": 0, + "executed": 1692789292 + }, + { + "status": 0, + "executed": 1692789592 + } + ], + "issued": 1692789592, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/0/0.333 ingressOctets=127785062329691,egressOctets=690704217574650,ingressErrors=0,egressErrors=0,ingressOctetsv6=4132824416,egressOctetsv6=4241964184,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789592, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-0-0.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7182a387-c4d6-4c3c-ac67-730c09aea658", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789592 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/1 559", + "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, + "duration": 0.512813182, + "executed": 1692789448, + "history": [ + { + "status": 0, + "executed": 1692783444 + }, + { + "status": 0, + "executed": 1692783744 + }, + { + "status": 0, + "executed": 1692784044 + }, + { + "status": 0, + "executed": 1692784345 + }, + { + "status": 0, + "executed": 1692784645 + }, + { + "status": 0, + "executed": 1692784945 + }, + { + "status": 0, + "executed": 1692785245 + }, + { + "status": 0, + "executed": 1692785546 + }, + { + "status": 0, + "executed": 1692785846 + }, + { + "status": 0, + "executed": 1692786146 + }, + { + "status": 0, + "executed": 1692786447 + }, + { + "status": 0, + "executed": 1692786747 + }, + { + "status": 0, + "executed": 1692787047 + }, + { + "status": 0, + "executed": 1692787347 + }, + { + "status": 0, + "executed": 1692787648 + }, + { + "status": 0, + "executed": 1692787948 + }, + { + "status": 0, + "executed": 1692788248 + }, + { + "status": 0, + "executed": 1692788548 + }, + { + "status": 0, + "executed": 1692788848 + }, + { + "status": 0, + "executed": 1692789148 + }, + { + "status": 0, + "executed": 1692789448 + } + ], + "issued": 1692789448, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789448, + "occurrences": 24392, + "occurrences_watermark": 24392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e4b18614-c0f1-4ea3-9878-cabdb557c50a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789449 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/2 560", + "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, + "duration": 0.532530025, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/0/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "784ae722-18ec-43bc-b91b-4ae722dbaba3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/0/3 561", + "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, + "duration": 0.548299823, + "executed": 1692789515, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783811 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785312 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786213 + }, + { + "status": 0, + "executed": 1692786513 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787414 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788015 + }, + { + "status": 0, + "executed": 1692788315 + }, + { + "status": 0, + "executed": 1692788615 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789515 + } + ], + "issued": 1692789515, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789515, + "occurrences": 24392, + "occurrences_watermark": 24392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c09637ed-8799-4e23-8e02-ff0efc37102d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/1/0 562", + "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, + "duration": 0.577263554, + "executed": 1692789683, + "history": [ + { + "status": 0, + "executed": 1692783679 + }, + { + "status": 0, + "executed": 1692783979 + }, + { + "status": 0, + "executed": 1692784279 + }, + { + "status": 0, + "executed": 1692784580 + }, + { + "status": 0, + "executed": 1692784880 + }, + { + "status": 0, + "executed": 1692785180 + }, + { + "status": 0, + "executed": 1692785481 + }, + { + "status": 0, + "executed": 1692785781 + }, + { + "status": 0, + "executed": 1692786081 + }, + { + "status": 0, + "executed": 1692786381 + }, + { + "status": 0, + "executed": 1692786682 + }, + { + "status": 0, + "executed": 1692786981 + }, + { + "status": 0, + "executed": 1692787282 + }, + { + "status": 0, + "executed": 1692787582 + }, + { + "status": 0, + "executed": 1692787882 + }, + { + "status": 0, + "executed": 1692788182 + }, + { + "status": 0, + "executed": 1692788482 + }, + { + "status": 0, + "executed": 1692788783 + }, + { + "status": 0, + "executed": 1692789083 + }, + { + "status": 0, + "executed": 1692789383 + }, + { + "status": 0, + "executed": 1692789683 + } + ], + "issued": 1692789682, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789683, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "84512958-250f-4ecd-a8fb-f317fc7ba67d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789683 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/1/1 563", + "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, + "duration": 0.507752204, + "executed": 1692789650, + "history": [ + { + "status": 0, + "executed": 1692783646 + }, + { + "status": 0, + "executed": 1692783946 + }, + { + "status": 0, + "executed": 1692784246 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784847 + }, + { + "status": 0, + "executed": 1692785147 + }, + { + "status": 0, + "executed": 1692785447 + }, + { + "status": 0, + "executed": 1692785747 + }, + { + "status": 0, + "executed": 1692786048 + }, + { + "status": 0, + "executed": 1692786348 + }, + { + "status": 0, + "executed": 1692786647 + }, + { + "status": 0, + "executed": 1692786947 + }, + { + "status": 0, + "executed": 1692787248 + }, + { + "status": 0, + "executed": 1692787548 + }, + { + "status": 0, + "executed": 1692787849 + }, + { + "status": 0, + "executed": 1692788149 + }, + { + "status": 0, + "executed": 1692788449 + }, + { + "status": 0, + "executed": 1692788749 + }, + { + "status": 0, + "executed": 1692789050 + }, + { + "status": 0, + "executed": 1692789350 + }, + { + "status": 0, + "executed": 1692789650 + } + ], + "issued": 1692789650, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789650, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f086282b-a7e2-4712-bdd0-d36197b2aa97", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789650 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/1/2 564", + "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, + "duration": 0.498739513, + "executed": 1692789505, + "history": [ + { + "status": 0, + "executed": 1692783501 + }, + { + "status": 0, + "executed": 1692783801 + }, + { + "status": 0, + "executed": 1692784101 + }, + { + "status": 0, + "executed": 1692784401 + }, + { + "status": 0, + "executed": 1692784701 + }, + { + "status": 0, + "executed": 1692785002 + }, + { + "status": 0, + "executed": 1692785302 + }, + { + "status": 0, + "executed": 1692785602 + }, + { + "status": 0, + "executed": 1692785902 + }, + { + "status": 0, + "executed": 1692786203 + }, + { + "status": 0, + "executed": 1692786503 + }, + { + "status": 0, + "executed": 1692786803 + }, + { + "status": 0, + "executed": 1692787103 + }, + { + "status": 0, + "executed": 1692787404 + }, + { + "status": 0, + "executed": 1692787704 + }, + { + "status": 0, + "executed": 1692788005 + }, + { + "status": 0, + "executed": 1692788305 + }, + { + "status": 0, + "executed": 1692788605 + }, + { + "status": 0, + "executed": 1692788905 + }, + { + "status": 0, + "executed": 1692789205 + }, + { + "status": 0, + "executed": 1692789505 + } + ], + "issued": 1692789505, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/1/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789505, + "occurrences": 24386, + "occurrences_watermark": 24386, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-1-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bbe14a8c-52f7-4782-b648-428436372611", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789505 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/1/3 565", + "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, + "duration": 0.538946283, + "executed": 1692789687, + "history": [ + { + "status": 0, + "executed": 1692783685 + }, + { + "status": 0, + "executed": 1692783983 + }, + { + "status": 0, + "executed": 1692784283 + }, + { + "status": 0, + "executed": 1692784584 + }, + { + "status": 0, + "executed": 1692784884 + }, + { + "status": 0, + "executed": 1692785184 + }, + { + "status": 0, + "executed": 1692785484 + }, + { + "status": 0, + "executed": 1692785784 + }, + { + "status": 0, + "executed": 1692786084 + }, + { + "status": 0, + "executed": 1692786385 + }, + { + "status": 0, + "executed": 1692786685 + }, + { + "status": 0, + "executed": 1692786985 + }, + { + "status": 0, + "executed": 1692787285 + }, + { + "status": 0, + "executed": 1692787585 + }, + { + "status": 0, + "executed": 1692787885 + }, + { + "status": 0, + "executed": 1692788186 + }, + { + "status": 0, + "executed": 1692788486 + }, + { + "status": 0, + "executed": 1692788786 + }, + { + "status": 0, + "executed": 1692789087 + }, + { + "status": 0, + "executed": 1692789387 + }, + { + "status": 0, + "executed": 1692789687 + } + ], + "issued": 1692789686, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/1/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789687, + "occurrences": 24392, + "occurrences_watermark": 24392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-1-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a578d559-7ff2-4a08-b095-ae0d6e37bfd5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789687 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/2/0 566", + "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, + "duration": 0.536697464, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784519 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/2/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 24387, + "occurrences_watermark": 24387, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "84362a0c-29bd-495c-8aab-ca34a3fc2be2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789623 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/2/1 567", + "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, + "duration": 0.609527644, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "91584960-dc2f-41ec-b984-a165301bced0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/2/2 568", + "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, + "duration": 0.487853861, + "executed": 1692789568, + "history": [ + { + "status": 0, + "executed": 1692783561 + }, + { + "status": 0, + "executed": 1692783861 + }, + { + "status": 0, + "executed": 1692784161 + }, + { + "status": 0, + "executed": 1692784464 + }, + { + "status": 0, + "executed": 1692784763 + }, + { + "status": 0, + "executed": 1692785063 + }, + { + "status": 0, + "executed": 1692785364 + }, + { + "status": 0, + "executed": 1692785664 + }, + { + "status": 0, + "executed": 1692785964 + }, + { + "status": 0, + "executed": 1692786265 + }, + { + "status": 0, + "executed": 1692786565 + }, + { + "status": 0, + "executed": 1692786865 + }, + { + "status": 0, + "executed": 1692787165 + }, + { + "status": 0, + "executed": 1692787465 + }, + { + "status": 0, + "executed": 1692787766 + }, + { + "status": 0, + "executed": 1692788066 + }, + { + "status": 0, + "executed": 1692788366 + }, + { + "status": 0, + "executed": 1692788667 + }, + { + "status": 0, + "executed": 1692788967 + }, + { + "status": 0, + "executed": 1692789267 + }, + { + "status": 0, + "executed": 1692789568 + } + ], + "issued": 1692789567, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789568, + "occurrences": 24387, + "occurrences_watermark": 24387, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "75e11f51-ec89-4f62-b03b-89f005b93fca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789568 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/2/3 569", + "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, + "duration": 0.6338161, + "executed": 1692789424, + "history": [ + { + "status": 0, + "executed": 1692783420 + }, + { + "status": 0, + "executed": 1692783720 + }, + { + "status": 0, + "executed": 1692784020 + }, + { + "status": 0, + "executed": 1692784320 + }, + { + "status": 0, + "executed": 1692784620 + }, + { + "status": 0, + "executed": 1692784920 + }, + { + "status": 0, + "executed": 1692785220 + }, + { + "status": 0, + "executed": 1692785520 + }, + { + "status": 0, + "executed": 1692785821 + }, + { + "status": 0, + "executed": 1692786121 + }, + { + "status": 0, + "executed": 1692786422 + }, + { + "status": 0, + "executed": 1692786722 + }, + { + "status": 0, + "executed": 1692787022 + }, + { + "status": 0, + "executed": 1692787322 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787923 + }, + { + "status": 0, + "executed": 1692788223 + }, + { + "status": 0, + "executed": 1692788523 + }, + { + "status": 0, + "executed": 1692788823 + }, + { + "status": 0, + "executed": 1692789124 + }, + { + "status": 0, + "executed": 1692789424 + } + ], + "issued": 1692789424, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789424, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "938a8da2-205b-490f-9690-6e65fa7bed70", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789424 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/3/0 570", + "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, + "duration": 0.4917169, + "executed": 1692789590, + "history": [ + { + "status": 0, + "executed": 1692783586 + }, + { + "status": 0, + "executed": 1692783886 + }, + { + "status": 0, + "executed": 1692784186 + }, + { + "status": 0, + "executed": 1692784486 + }, + { + "status": 0, + "executed": 1692784786 + }, + { + "status": 0, + "executed": 1692785086 + }, + { + "status": 0, + "executed": 1692785386 + }, + { + "status": 0, + "executed": 1692785686 + }, + { + "status": 0, + "executed": 1692785987 + }, + { + "status": 0, + "executed": 1692786287 + }, + { + "status": 0, + "executed": 1692786587 + }, + { + "status": 0, + "executed": 1692786887 + }, + { + "status": 0, + "executed": 1692787188 + }, + { + "status": 0, + "executed": 1692787488 + }, + { + "status": 0, + "executed": 1692787788 + }, + { + "status": 0, + "executed": 1692788089 + }, + { + "status": 0, + "executed": 1692788389 + }, + { + "status": 0, + "executed": 1692788689 + }, + { + "status": 0, + "executed": 1692788989 + }, + { + "status": 0, + "executed": 1692789290 + }, + { + "status": 0, + "executed": 1692789590 + } + ], + "issued": 1692789589, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/3/0 ingressOctets=31396907702,egressOctets=19158428011,ingressErrors=48267,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789590, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "1c4fd1d6-127e-4bac-a0c2-a469ea43f905", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789591 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/3/1 571", + "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, + "duration": 0.495574932, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/3/1 ingressOctets=19047943904,egressOctets=20129776854,ingressErrors=9812,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 24392, + "occurrences_watermark": 24392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "45d652e7-2a09-4fe3-966e-1e9f749afb91", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/3/2 572", + "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, + "duration": 0.525108077, + "executed": 1692789633, + "history": [ + { + "status": 0, + "executed": 1692783629 + }, + { + "status": 0, + "executed": 1692783929 + }, + { + "status": 0, + "executed": 1692784229 + }, + { + "status": 0, + "executed": 1692784530 + }, + { + "status": 0, + "executed": 1692784830 + }, + { + "status": 0, + "executed": 1692785130 + }, + { + "status": 0, + "executed": 1692785430 + }, + { + "status": 0, + "executed": 1692785730 + }, + { + "status": 0, + "executed": 1692786031 + }, + { + "status": 0, + "executed": 1692786331 + }, + { + "status": 0, + "executed": 1692786630 + }, + { + "status": 0, + "executed": 1692786930 + }, + { + "status": 0, + "executed": 1692787231 + }, + { + "status": 0, + "executed": 1692787531 + }, + { + "status": 0, + "executed": 1692787832 + }, + { + "status": 0, + "executed": 1692788132 + }, + { + "status": 0, + "executed": 1692788432 + }, + { + "status": 0, + "executed": 1692788732 + }, + { + "status": 0, + "executed": 1692789032 + }, + { + "status": 0, + "executed": 1692789333 + }, + { + "status": 0, + "executed": 1692789633 + } + ], + "issued": 1692789633, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/3/2 ingressOctets=0,egressOctets=101389056,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789633, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fd3fa339-b7e9-4dfd-9ab6-d4a4ae464e29", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789633 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-1/3/3 573", + "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, + "duration": 0.542974985, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787535 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-1/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 24392, + "occurrences_watermark": 24392, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-1-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e3f33c12-847f-44c2-ad67-6fd9289a4a3e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-2/0/0 727", + "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, + "duration": 0.552979471, + "executed": 1692789692, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786690 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789092 + }, + { + "status": 0, + "executed": 1692789392 + }, + { + "status": 0, + "executed": 1692789692 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-2/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789692, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8cedbf65-3278-4710-a108-9f05b4a655d0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789692 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-2/0/1 728", + "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, + "duration": 0.537148742, + "executed": 1692789558, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785054 + }, + { + "status": 0, + "executed": 1692785354 + }, + { + "status": 0, + "executed": 1692785654 + }, + { + "status": 0, + "executed": 1692785954 + }, + { + "status": 0, + "executed": 1692786255 + }, + { + "status": 0, + "executed": 1692786555 + }, + { + "status": 0, + "executed": 1692786855 + }, + { + "status": 0, + "executed": 1692787155 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787756 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788657 + }, + { + "status": 0, + "executed": 1692788957 + }, + { + "status": 0, + "executed": 1692789257 + }, + { + "status": 0, + "executed": 1692789558 + } + ], + "issued": 1692789557, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-2/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789558, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-2-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b831165b-6a65-4a0b-be51-f4b9c64fad2b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789558 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-2/1/0 729", + "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, + "duration": 0.492767562, + "executed": 1692789596, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784792 + }, + { + "status": 0, + "executed": 1692785092 + }, + { + "status": 0, + "executed": 1692785392 + }, + { + "status": 0, + "executed": 1692785692 + }, + { + "status": 0, + "executed": 1692785992 + }, + { + "status": 0, + "executed": 1692786292 + }, + { + "status": 0, + "executed": 1692786593 + }, + { + "status": 0, + "executed": 1692786893 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787794 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788695 + }, + { + "status": 0, + "executed": 1692788995 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789596 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-2/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789596, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-2-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "32319c62-1688-4979-af44-d41cb0374ca5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789596 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-2/1/1 730", + "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, + "duration": 0.558419011, + "executed": 1692789694, + "history": [ + { + "status": 0, + "executed": 1692783689 + }, + { + "status": 0, + "executed": 1692783989 + }, + { + "status": 0, + "executed": 1692784289 + }, + { + "status": 0, + "executed": 1692784590 + }, + { + "status": 0, + "executed": 1692784890 + }, + { + "status": 0, + "executed": 1692785190 + }, + { + "status": 0, + "executed": 1692785491 + }, + { + "status": 0, + "executed": 1692785791 + }, + { + "status": 0, + "executed": 1692786091 + }, + { + "status": 0, + "executed": 1692786391 + }, + { + "status": 0, + "executed": 1692786691 + }, + { + "status": 0, + "executed": 1692786991 + }, + { + "status": 0, + "executed": 1692787292 + }, + { + "status": 0, + "executed": 1692787592 + }, + { + "status": 0, + "executed": 1692787893 + }, + { + "status": 0, + "executed": 1692788193 + }, + { + "status": 0, + "executed": 1692788493 + }, + { + "status": 0, + "executed": 1692788793 + }, + { + "status": 0, + "executed": 1692789094 + }, + { + "status": 0, + "executed": 1692789394 + }, + { + "status": 0, + "executed": 1692789694 + } + ], + "issued": 1692789693, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-2/1/1 ingressOctets=71714961057375,egressOctets=260771461351222,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789694, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-2-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7f0a0615-8904-4788-98d5-79bff0c4fa5d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789694 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/0 749", + "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, + "duration": 0.509524127, + "executed": 1692789554, + "history": [ + { + "status": 0, + "executed": 1692783550 + }, + { + "status": 0, + "executed": 1692783850 + }, + { + "status": 0, + "executed": 1692784150 + }, + { + "status": 0, + "executed": 1692784450 + }, + { + "status": 0, + "executed": 1692784750 + }, + { + "status": 0, + "executed": 1692785051 + }, + { + "status": 0, + "executed": 1692785351 + }, + { + "status": 0, + "executed": 1692785651 + }, + { + "status": 0, + "executed": 1692785951 + }, + { + "status": 0, + "executed": 1692786251 + }, + { + "status": 0, + "executed": 1692786552 + }, + { + "status": 0, + "executed": 1692786852 + }, + { + "status": 0, + "executed": 1692787152 + }, + { + "status": 0, + "executed": 1692787452 + }, + { + "status": 0, + "executed": 1692787753 + }, + { + "status": 0, + "executed": 1692788053 + }, + { + "status": 0, + "executed": 1692788354 + }, + { + "status": 0, + "executed": 1692788653 + }, + { + "status": 0, + "executed": 1692788954 + }, + { + "status": 0, + "executed": 1692789254 + }, + { + "status": 0, + "executed": 1692789554 + } + ], + "issued": 1692789553, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/0/0 ingressOctets=1704094363,egressOctets=1583745027,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789554, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4b3103cd-3a1e-43ca-9ae4-aa092979fe35", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789554 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/0.0 799", + "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, + "duration": 0.465605569, + "executed": 1692789598, + "history": [ + { + "status": 0, + "executed": 1692783594 + }, + { + "status": 0, + "executed": 1692783894 + }, + { + "status": 0, + "executed": 1692784194 + }, + { + "status": 0, + "executed": 1692784494 + }, + { + "status": 0, + "executed": 1692784795 + }, + { + "status": 0, + "executed": 1692785095 + }, + { + "status": 0, + "executed": 1692785395 + }, + { + "status": 0, + "executed": 1692785695 + }, + { + "status": 0, + "executed": 1692785996 + }, + { + "status": 0, + "executed": 1692786296 + }, + { + "status": 0, + "executed": 1692786595 + }, + { + "status": 0, + "executed": 1692786896 + }, + { + "status": 0, + "executed": 1692787196 + }, + { + "status": 0, + "executed": 1692787496 + }, + { + "status": 0, + "executed": 1692787797 + }, + { + "status": 0, + "executed": 1692788097 + }, + { + "status": 0, + "executed": 1692788397 + }, + { + "status": 0, + "executed": 1692788698 + }, + { + "status": 0, + "executed": 1692788998 + }, + { + "status": 0, + "executed": 1692789298 + }, + { + "status": 0, + "executed": 1692789598 + } + ], + "issued": 1692789598, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/0/0.0 ingressOctets=1704096607,egressOctets=1583747271,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789598, + "occurrences": 24386, + "occurrences_watermark": 24386, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-0-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e80b2427-707b-411b-99cf-cf63eb279e3c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789599 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/1 750", + "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, + "duration": 0.608102758, + "executed": 1692789617, + "history": [ + { + "status": 0, + "executed": 1692783612 + }, + { + "status": 0, + "executed": 1692783912 + }, + { + "status": 0, + "executed": 1692784212 + }, + { + "status": 0, + "executed": 1692784512 + }, + { + "status": 0, + "executed": 1692784812 + }, + { + "status": 0, + "executed": 1692785112 + }, + { + "status": 0, + "executed": 1692785412 + }, + { + "status": 0, + "executed": 1692785712 + }, + { + "status": 0, + "executed": 1692786013 + }, + { + "status": 0, + "executed": 1692786314 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786914 + }, + { + "status": 0, + "executed": 1692787215 + }, + { + "status": 0, + "executed": 1692787515 + }, + { + "status": 0, + "executed": 1692787815 + }, + { + "status": 0, + "executed": 1692788116 + }, + { + "status": 0, + "executed": 1692788416 + }, + { + "status": 0, + "executed": 1692788716 + }, + { + "status": 0, + "executed": 1692789017 + }, + { + "status": 0, + "executed": 1692789317 + }, + { + "status": 0, + "executed": 1692789617 + } + ], + "issued": 1692789617, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/0/1 ingressOctets=1498156413,egressOctets=679935765,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789617, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c6457646-1c25-47d4-abb8-5f361680373b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789617 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/1.0 798", + "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, + "duration": 0.505077012, + "executed": 1692789689, + "history": [ + { + "status": 0, + "executed": 1692783686 + }, + { + "status": 0, + "executed": 1692783986 + }, + { + "status": 0, + "executed": 1692784286 + }, + { + "status": 0, + "executed": 1692784587 + }, + { + "status": 0, + "executed": 1692784887 + }, + { + "status": 0, + "executed": 1692785187 + }, + { + "status": 0, + "executed": 1692785487 + }, + { + "status": 0, + "executed": 1692785787 + }, + { + "status": 0, + "executed": 1692786088 + }, + { + "status": 0, + "executed": 1692786388 + }, + { + "status": 0, + "executed": 1692786687 + }, + { + "status": 0, + "executed": 1692786988 + }, + { + "status": 0, + "executed": 1692787288 + }, + { + "status": 0, + "executed": 1692787588 + }, + { + "status": 0, + "executed": 1692787888 + }, + { + "status": 0, + "executed": 1692788188 + }, + { + "status": 0, + "executed": 1692788489 + }, + { + "status": 0, + "executed": 1692788789 + }, + { + "status": 0, + "executed": 1692789089 + }, + { + "status": 0, + "executed": 1692789389 + }, + { + "status": 0, + "executed": 1692789689 + } + ], + "issued": 1692789689, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/0/1.0 ingressOctets=1498159493,egressOctets=679938650,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789689, + "occurrences": 24384, + "occurrences_watermark": 24384, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-0-1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "3b1855e8-5dbe-4ba3-b703-d54cc650aff4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789689 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/2 751", + "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, + "duration": 0.497335907, + "executed": 1692789704, + "history": [ + { + "status": 0, + "executed": 1692783701 + }, + { + "status": 0, + "executed": 1692784001 + }, + { + "status": 0, + "executed": 1692784301 + }, + { + "status": 0, + "executed": 1692784602 + }, + { + "status": 0, + "executed": 1692784902 + }, + { + "status": 0, + "executed": 1692785202 + }, + { + "status": 0, + "executed": 1692785502 + }, + { + "status": 0, + "executed": 1692785802 + }, + { + "status": 0, + "executed": 1692786103 + }, + { + "status": 0, + "executed": 1692786403 + }, + { + "status": 0, + "executed": 1692786703 + }, + { + "status": 0, + "executed": 1692787003 + }, + { + "status": 0, + "executed": 1692787303 + }, + { + "status": 0, + "executed": 1692787603 + }, + { + "status": 0, + "executed": 1692787903 + }, + { + "status": 0, + "executed": 1692788204 + }, + { + "status": 0, + "executed": 1692788504 + }, + { + "status": 0, + "executed": 1692788804 + }, + { + "status": 0, + "executed": 1692789104 + }, + { + "status": 0, + "executed": 1692789404 + }, + { + "status": 0, + "executed": 1692789704 + } + ], + "issued": 1692789704, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/0/2 ingressOctets=57110981,egressOctets=0,ingressErrors=3,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789704, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-0-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "539a3078-8416-4de7-b669-aefcc2ce817b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789704 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/2.107 804", + "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, + "duration": 0.507890756, + "executed": 1692789559, + "history": [ + { + "status": 0, + "executed": 1692783554 + }, + { + "status": 0, + "executed": 1692783854 + }, + { + "status": 0, + "executed": 1692784154 + }, + { + "status": 0, + "executed": 1692784454 + }, + { + "status": 0, + "executed": 1692784754 + }, + { + "status": 0, + "executed": 1692785055 + }, + { + "status": 0, + "executed": 1692785355 + }, + { + "status": 0, + "executed": 1692785655 + }, + { + "status": 0, + "executed": 1692785955 + }, + { + "status": 0, + "executed": 1692786256 + }, + { + "status": 0, + "executed": 1692786556 + }, + { + "status": 0, + "executed": 1692786856 + }, + { + "status": 0, + "executed": 1692787156 + }, + { + "status": 0, + "executed": 1692787456 + }, + { + "status": 0, + "executed": 1692787757 + }, + { + "status": 0, + "executed": 1692788057 + }, + { + "status": 0, + "executed": 1692788357 + }, + { + "status": 0, + "executed": 1692788658 + }, + { + "status": 0, + "executed": 1692788958 + }, + { + "status": 0, + "executed": 1692789258 + }, + { + "status": 0, + "executed": 1692789559 + } + ], + "issued": 1692789558, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/0/2.107 ingressOctets=57107320,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789559, + "occurrences": 24388, + "occurrences_watermark": 24388, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-0-2.107", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a7ed7261-51e5-4e0a-807a-1f0e32aeb8a4", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789559 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/0/3 752", + "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, + "duration": 0.496172866, + "executed": 1692789576, + "history": [ + { + "status": 0, + "executed": 1692783572 + }, + { + "status": 0, + "executed": 1692783872 + }, + { + "status": 0, + "executed": 1692784172 + }, + { + "status": 0, + "executed": 1692784472 + }, + { + "status": 0, + "executed": 1692784772 + }, + { + "status": 0, + "executed": 1692785073 + }, + { + "status": 0, + "executed": 1692785373 + }, + { + "status": 0, + "executed": 1692785673 + }, + { + "status": 0, + "executed": 1692785973 + }, + { + "status": 0, + "executed": 1692786274 + }, + { + "status": 0, + "executed": 1692786574 + }, + { + "status": 0, + "executed": 1692786874 + }, + { + "status": 0, + "executed": 1692787174 + }, + { + "status": 0, + "executed": 1692787474 + }, + { + "status": 0, + "executed": 1692787775 + }, + { + "status": 0, + "executed": 1692788075 + }, + { + "status": 0, + "executed": 1692788375 + }, + { + "status": 0, + "executed": 1692788676 + }, + { + "status": 0, + "executed": 1692788976 + }, + { + "status": 0, + "executed": 1692789276 + }, + { + "status": 0, + "executed": 1692789576 + } + ], + "issued": 1692789576, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/0/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789576, + "occurrences": 24389, + "occurrences_watermark": 24389, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-0-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6cb13897-daeb-47b2-a5b4-940c58807677", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789577 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/0 754", + "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, + "duration": 0.492596847, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783574 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/2/0 ingressOctets=53729702829,egressOctets=46642095731,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 24384, + "occurrences_watermark": 24384, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "895c8707-a775-440f-9038-f2863498f694", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789578 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/0.0 828", + "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, + "duration": 0.496970391, + "executed": 1692789697, + "history": [ + { + "status": 0, + "executed": 1692783694 + }, + { + "status": 0, + "executed": 1692783994 + }, + { + "status": 0, + "executed": 1692784294 + }, + { + "status": 0, + "executed": 1692784595 + }, + { + "status": 0, + "executed": 1692784895 + }, + { + "status": 0, + "executed": 1692785195 + }, + { + "status": 0, + "executed": 1692785495 + }, + { + "status": 0, + "executed": 1692785795 + }, + { + "status": 0, + "executed": 1692786096 + }, + { + "status": 0, + "executed": 1692786396 + }, + { + "status": 0, + "executed": 1692786696 + }, + { + "status": 0, + "executed": 1692786996 + }, + { + "status": 0, + "executed": 1692787296 + }, + { + "status": 0, + "executed": 1692787596 + }, + { + "status": 0, + "executed": 1692787896 + }, + { + "status": 0, + "executed": 1692788196 + }, + { + "status": 0, + "executed": 1692788497 + }, + { + "status": 0, + "executed": 1692788797 + }, + { + "status": 0, + "executed": 1692789097 + }, + { + "status": 0, + "executed": 1692789397 + }, + { + "status": 0, + "executed": 1692789697 + } + ], + "issued": 1692789697, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/2/0.0 ingressOctets=53730542092,egressOctets=46658365171,ingressErrors=0,egressErrors=0,ingressOctetsv6=35795673639,egressOctetsv6=34808263077,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789697, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-2-0.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5fa02b4e-8fa8-4357-be54-36517982e717", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789697 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/1 755", + "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, + "duration": 0.527001489, + "executed": 1692789637, + "history": [ + { + "status": 0, + "executed": 1692783633 + }, + { + "status": 0, + "executed": 1692783933 + }, + { + "status": 0, + "executed": 1692784233 + }, + { + "status": 0, + "executed": 1692784533 + }, + { + "status": 0, + "executed": 1692784833 + }, + { + "status": 0, + "executed": 1692785133 + }, + { + "status": 0, + "executed": 1692785434 + }, + { + "status": 0, + "executed": 1692785734 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786634 + }, + { + "status": 0, + "executed": 1692786935 + }, + { + "status": 0, + "executed": 1692787235 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787836 + }, + { + "status": 0, + "executed": 1692788136 + }, + { + "status": 0, + "executed": 1692788436 + }, + { + "status": 0, + "executed": 1692788736 + }, + { + "status": 0, + "executed": 1692789037 + }, + { + "status": 0, + "executed": 1692789337 + }, + { + "status": 0, + "executed": 1692789637 + } + ], + "issued": 1692789637, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/2/1 ingressOctets=31889617930666,egressOctets=39162303824696,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789637, + "occurrences": 24387, + "occurrences_watermark": 24387, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bfa475e9-eebe-4db5-b337-e362a724ead0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789637 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/1.0 829", + "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, + "duration": 0.548967094, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785500 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789102 + }, + { + "status": 0, + "executed": 1692789402 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/2/1.0 ingressOctets=31889635643375,egressOctets=39164777446939,ingressErrors=0,egressErrors=0,ingressOctetsv6=13173096398139,egressOctetsv6=15744510190701,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 24390, + "occurrences_watermark": 24390, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-2-1.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4b116c0f-321f-43fe-8c5f-135bd3852ece", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789702 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/2 756", + "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, + "duration": 0.566694437, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785089 + }, + { + "status": 0, + "executed": 1692785389 + }, + { + "status": 0, + "executed": 1692785689 + }, + { + "status": 0, + "executed": 1692785990 + }, + { + "status": 0, + "executed": 1692786290 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786890 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787791 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788692 + }, + { + "status": 0, + "executed": 1692788992 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/2/2 ingressOctets=378094863736,egressOctets=303767994796,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 24385, + "occurrences_watermark": 24385, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "83e1a186-78bb-4b64-97cf-fbdd4ce1dfe1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789593 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/2.0 830", + "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, + "duration": 0.596131009, + "executed": 1692789601, + "history": [ + { + "status": 0, + "executed": 1692783596 + }, + { + "status": 0, + "executed": 1692783896 + }, + { + "status": 0, + "executed": 1692784196 + }, + { + "status": 0, + "executed": 1692784496 + }, + { + "status": 0, + "executed": 1692784797 + }, + { + "status": 0, + "executed": 1692785097 + }, + { + "status": 0, + "executed": 1692785397 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785998 + }, + { + "status": 0, + "executed": 1692786298 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786898 + }, + { + "status": 0, + "executed": 1692787199 + }, + { + "status": 0, + "executed": 1692787499 + }, + { + "status": 0, + "executed": 1692787799 + }, + { + "status": 0, + "executed": 1692788100 + }, + { + "status": 0, + "executed": 1692788400 + }, + { + "status": 0, + "executed": 1692788700 + }, + { + "status": 0, + "executed": 1692789000 + }, + { + "status": 0, + "executed": 1692789301 + }, + { + "status": 0, + "executed": 1692789601 + } + ], + "issued": 1692789601, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/2/2.0 ingressOctets=378095224696,egressOctets=303784228585,ingressErrors=0,egressErrors=0,ingressOctetsv6=184313197878,egressOctetsv6=160458399628,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789601, + "occurrences": 24385, + "occurrences_watermark": 24385, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-2-2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "f23b1436-574d-4502-9941-b1cf3b8f4405", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789602 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.poz.pl.geant.net xe-3/2/3 763", + "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, + "duration": 0.538214454, + "executed": 1692789651, + "history": [ + { + "status": 0, + "executed": 1692783647 + }, + { + "status": 0, + "executed": 1692783947 + }, + { + "status": 0, + "executed": 1692784247 + }, + { + "status": 0, + "executed": 1692784547 + }, + { + "status": 0, + "executed": 1692784847 + }, + { + "status": 0, + "executed": 1692785147 + }, + { + "status": 0, + "executed": 1692785448 + }, + { + "status": 0, + "executed": 1692785748 + }, + { + "status": 0, + "executed": 1692786048 + }, + { + "status": 0, + "executed": 1692786349 + }, + { + "status": 0, + "executed": 1692786649 + }, + { + "status": 0, + "executed": 1692786949 + }, + { + "status": 0, + "executed": 1692787249 + }, + { + "status": 0, + "executed": 1692787549 + }, + { + "status": 0, + "executed": 1692787850 + }, + { + "status": 0, + "executed": 1692788150 + }, + { + "status": 0, + "executed": 1692788450 + }, + { + "status": 0, + "executed": 1692788750 + }, + { + "status": 0, + "executed": 1692789051 + }, + { + "status": 0, + "executed": 1692789351 + }, + { + "status": 0, + "executed": 1692789651 + } + ], + "issued": 1692789651, + "output": "counters,hostname=mx1.poz.pl.geant.net,interface_name=xe-3/2/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789651, + "occurrences": 24391, + "occurrences_watermark": 24391, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.poz.pl.geant.net-xe-3-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.poz.pl.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.poz.pl.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a43349b0-28ee-4a81-8943-5a415f6fe5c1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789652 + }, + { + "check": { + "command": "/var/lib/sensu/bin/poll-gws-indirect.sh dscp32_counters 662956", + "handlers": [], + "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, + "duration": 0.411932384, + "executed": 1692789466, + "history": [ + { + "status": 0, + "executed": 1692783461 + }, + { + "status": 0, + "executed": 1692783761 + }, + { + "status": 0, + "executed": 1692784061 + }, + { + "status": 0, + "executed": 1692784362 + }, + { + "status": 0, + "executed": 1692784662 + }, + { + "status": 0, + "executed": 1692784962 + }, + { + "status": 0, + "executed": 1692785262 + }, + { + "status": 0, + "executed": 1692785563 + }, + { + "status": 0, + "executed": 1692785863 + }, + { + "status": 0, + "executed": 1692786163 + }, + { + "status": 0, + "executed": 1692786464 + }, + { + "status": 0, + "executed": 1692786764 + }, + { + "status": 0, + "executed": 1692787064 + }, + { + "status": 0, + "executed": 1692787364 + }, + { + "status": 0, + "executed": 1692787665 + }, + { + "status": 0, + "executed": 1692787966 + }, + { + "status": 0, + "executed": 1692788266 + }, + { + "status": 0, + "executed": 1692788566 + }, + { + "status": 0, + "executed": 1692788866 + }, + { + "status": 0, + "executed": 1692789166 + }, + { + "status": 0, + "executed": 1692789466 + } + ], + "issued": 1692789466, + "output": "dscp32_counters,service_id=662956,hostname=mx1.sof.bg.geant.net,interface_name=ae11.333 ingressOctets=50262142556353,egressOctets=33965159855972\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789466, + "occurrences": 1460, + "occurrences_watermark": 1460, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "dscp32-MARNET_AP1_IAS", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5bc62986-749f-45e2-b3ef-eaf5ca43a379", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789467 + }, + { + "check": { + "command": "/home/brian_checks/venv/bin/eumetsat-multicast --inventory http://localhost:18080 --measurement multicast --hostname mx1.sof.bg.geant.net", + "handlers": [], + "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, + "duration": 6.813437646, + "executed": 1692789433, + "history": [ + { + "status": 1, + "executed": 1692783428 + }, + { + "status": 1, + "executed": 1692783728 + }, + { + "status": 1, + "executed": 1692784028 + }, + { + "status": 1, + "executed": 1692784328 + }, + { + "status": 1, + "executed": 1692784628 + }, + { + "status": 1, + "executed": 1692784928 + }, + { + "status": 1, + "executed": 1692785228 + }, + { + "status": 1, + "executed": 1692785528 + }, + { + "status": 1, + "executed": 1692785829 + }, + { + "status": 1, + "executed": 1692786129 + }, + { + "status": 1, + "executed": 1692786430 + }, + { + "status": 1, + "executed": 1692786730 + }, + { + "status": 1, + "executed": 1692787030 + }, + { + "status": 1, + "executed": 1692787330 + }, + { + "status": 1, + "executed": 1692787630 + }, + { + "status": 1, + "executed": 1692787931 + }, + { + "status": 1, + "executed": 1692788231 + }, + { + "status": 1, + "executed": 1692788531 + }, + { + "status": 1, + "executed": 1692788831 + }, + { + "status": 1, + "executed": 1692789133 + }, + { + "status": 1, + "executed": 1692789433 + } + ], + "issued": 1692789433, + "output": "2023-08-23 11:17:13,716 - brian_sensu_utils.eumetsat_multicast - DEBUG - requesting eumetsat subscription counters, config params:\n2023-08-23 11:17:13,716 - brian_sensu_utils.eumetsat_multicast - DEBUG - inventory: http://localhost:18080\n2023-08-23 11:17:13,716 - brian_sensu_utils.eumetsat_multicast - DEBUG - measurement: multicast\n2023-08-23 11:17:13,716 - brian_sensu_utils.eumetsat_multicast - DEBUG - hostname: mx1.sof.bg.geant.net\n2023-08-23 11:17:13,729 - urllib3.connectionpool - DEBUG - Starting new HTTP connection (1): localhost:18080\n2023-08-23 11:17:13,766 - urllib3.connectionpool - DEBUG - http://localhost:18080 \"GET /poller/eumetsat-multicast/mx1.sof.bg.geant.net HTTP/1.1\" 200 14632\nmulticast,hostname=mx1.sof.bg.geant.net,subscription=232.223.222.1 octets=76876312413\n2023-08-23 11:17:20,048 - brian_sensu_utils.eumetsat_multicast - ERROR - failed to received counters for subscriptions: 232.223.222.2,232.223.222.3,232.223.222.4,232.223.222.5,232.223.222.6,232.223.222.7,232.223.222.8,232.223.222.9,232.223.222.10,232.223.222.11,232.223.222.12,232.223.222.13,232.223.222.14,232.223.222.15,232.223.222.16,232.223.222.17,232.223.222.18,232.223.222.19,232.223.222.20,232.223.222.21,232.223.222.22,232.223.222.23,232.223.222.24,232.223.222.25,232.223.222.26,232.223.222.27,232.223.222.28,232.223.222.29,232.223.222.30,232.223.222.31,232.223.222.32,232.223.222.33,232.223.222.34,232.223.222.35,232.223.222.36,232.223.222.37,232.223.222.38,232.223.222.39,232.223.222.40,232.223.222.41,232.223.222.42,232.223.222.43,232.223.222.44,232.223.222.45,232.223.222.46,232.223.222.47,232.223.222.48,232.223.222.49,232.223.222.50,232.223.222.51,232.223.222.52,232.223.222.53,232.223.222.54,232.223.222.55,232.223.222.56,232.223.222.57,232.223.222.58,232.223.222.59,232.223.222.60,232.223.222.61,232.223.222.62,232.223.222.63,232.223.222.64,232.223.222.65,232.223.222.66,232.223.222.67,232.223.222.68,232.223.222.69,232.223.222.70,232.223.222.71,232.223.222.72,232.223.223.1,232.223.223.22\n", + "state": "failing", + "status": 1, + "total_state_change": 0, + "last_ok": 0, + "occurrences": 34837, + "occurrences_watermark": 34837, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "eumetmc-mx1.sof.bg.geant.net", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c60d0122-3eb6-4a82-89e0-1195b34e2dba", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3892, + "timestamp": 1692789440 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae1 557", + "handlers": [], + "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, + "duration": 0.653013331, + "executed": 1692789602, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786599 + }, + { + "status": 0, + "executed": 1692786899 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789602 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae1 ingressOctets=522881922634,egressOctets=12604881829,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789602, + "occurrences": 34813, + "occurrences_watermark": 34813, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c49670d-a21d-4240-b61b-e188f8df4cb3", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae1.103 721", + "handlers": [], + "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, + "duration": 0.625801458, + "executed": 1692789513, + "history": [ + { + "status": 0, + "executed": 1692783509 + }, + { + "status": 0, + "executed": 1692783809 + }, + { + "status": 0, + "executed": 1692784110 + }, + { + "status": 0, + "executed": 1692784410 + }, + { + "status": 0, + "executed": 1692784710 + }, + { + "status": 0, + "executed": 1692785010 + }, + { + "status": 0, + "executed": 1692785310 + }, + { + "status": 0, + "executed": 1692785611 + }, + { + "status": 0, + "executed": 1692785911 + }, + { + "status": 0, + "executed": 1692786211 + }, + { + "status": 0, + "executed": 1692786511 + }, + { + "status": 0, + "executed": 1692786812 + }, + { + "status": 0, + "executed": 1692787112 + }, + { + "status": 0, + "executed": 1692787412 + }, + { + "status": 0, + "executed": 1692787713 + }, + { + "status": 0, + "executed": 1692788013 + }, + { + "status": 0, + "executed": 1692788313 + }, + { + "status": 0, + "executed": 1692788613 + }, + { + "status": 0, + "executed": 1692788914 + }, + { + "status": 0, + "executed": 1692789214 + }, + { + "status": 0, + "executed": 1692789513 + } + ], + "issued": 1692789513, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae1.103 ingressOctets=510069447738,egressOctets=8895014031,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789513, + "occurrences": 34812, + "occurrences_watermark": 34812, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae1.103", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "51537aa1-2250-4c56-b8ab-20ad87e2d93e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789514 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae1.998 722", + "handlers": [], + "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, + "duration": 0.653278134, + "executed": 1692789538, + "history": [ + { + "status": 0, + "executed": 1692783534 + }, + { + "status": 0, + "executed": 1692783834 + }, + { + "status": 0, + "executed": 1692784134 + }, + { + "status": 0, + "executed": 1692784435 + }, + { + "status": 0, + "executed": 1692784735 + }, + { + "status": 0, + "executed": 1692785035 + }, + { + "status": 0, + "executed": 1692785335 + }, + { + "status": 0, + "executed": 1692785635 + }, + { + "status": 0, + "executed": 1692785935 + }, + { + "status": 0, + "executed": 1692786236 + }, + { + "status": 0, + "executed": 1692786536 + }, + { + "status": 0, + "executed": 1692786836 + }, + { + "status": 0, + "executed": 1692787136 + }, + { + "status": 0, + "executed": 1692787437 + }, + { + "status": 0, + "executed": 1692787737 + }, + { + "status": 0, + "executed": 1692788038 + }, + { + "status": 0, + "executed": 1692788338 + }, + { + "status": 0, + "executed": 1692788638 + }, + { + "status": 0, + "executed": 1692788939 + }, + { + "status": 0, + "executed": 1692789238 + }, + { + "status": 0, + "executed": 1692789538 + } + ], + "issued": 1692789538, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae1.998 ingressOctets=8815950282,egressOctets=2964534950,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789538, + "occurrences": 34813, + "occurrences_watermark": 34813, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae1.998", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "55c5c475-592b-4599-8e7f-21f85d7d238a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789539 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae11 565", + "handlers": [], + "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, + "duration": 0.628446246, + "executed": 1692789580, + "history": [ + { + "status": 0, + "executed": 1692783576 + }, + { + "status": 0, + "executed": 1692783876 + }, + { + "status": 0, + "executed": 1692784176 + }, + { + "status": 0, + "executed": 1692784476 + }, + { + "status": 0, + "executed": 1692784776 + }, + { + "status": 0, + "executed": 1692785077 + }, + { + "status": 0, + "executed": 1692785377 + }, + { + "status": 0, + "executed": 1692785677 + }, + { + "status": 0, + "executed": 1692785978 + }, + { + "status": 0, + "executed": 1692786278 + }, + { + "status": 0, + "executed": 1692786577 + }, + { + "status": 0, + "executed": 1692786878 + }, + { + "status": 0, + "executed": 1692787178 + }, + { + "status": 0, + "executed": 1692787478 + }, + { + "status": 0, + "executed": 1692787779 + }, + { + "status": 0, + "executed": 1692788079 + }, + { + "status": 0, + "executed": 1692788379 + }, + { + "status": 0, + "executed": 1692788680 + }, + { + "status": 0, + "executed": 1692788980 + }, + { + "status": 0, + "executed": 1692789280 + }, + { + "status": 0, + "executed": 1692789580 + } + ], + "issued": 1692789580, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae11 ingressOctets=126549593217297,egressOctets=218916490834175,ingressErrors=731,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789580, + "occurrences": 34814, + "occurrences_watermark": 34814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae11", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "867ea90e-bc82-4a97-b662-2496f8a70944", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789581 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae11.100 644", + "handlers": [], + "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, + "duration": 0.712533921, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae11.100 ingressOctets=1110339297882,egressOctets=10547454828623,ingressErrors=0,egressErrors=0,ingressOctetsv6=24256422966,egressOctetsv6=23950654901,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 34815, + "occurrences_watermark": 34815, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae11.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "bbb17e2e-9cff-4819-b9c3-12a5702f13f7", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae11.333 609", + "handlers": [], + "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, + "duration": 0.682578433, + "executed": 1692789665, + "history": [ + { + "status": 0, + "executed": 1692783661 + }, + { + "status": 0, + "executed": 1692783961 + }, + { + "status": 0, + "executed": 1692784261 + }, + { + "status": 0, + "executed": 1692784561 + }, + { + "status": 0, + "executed": 1692784861 + }, + { + "status": 0, + "executed": 1692785161 + }, + { + "status": 0, + "executed": 1692785461 + }, + { + "status": 0, + "executed": 1692785762 + }, + { + "status": 0, + "executed": 1692786062 + }, + { + "status": 0, + "executed": 1692786362 + }, + { + "status": 0, + "executed": 1692786663 + }, + { + "status": 0, + "executed": 1692786962 + }, + { + "status": 0, + "executed": 1692787263 + }, + { + "status": 0, + "executed": 1692787563 + }, + { + "status": 0, + "executed": 1692787863 + }, + { + "status": 0, + "executed": 1692788163 + }, + { + "status": 0, + "executed": 1692788464 + }, + { + "status": 0, + "executed": 1692788764 + }, + { + "status": 0, + "executed": 1692789064 + }, + { + "status": 0, + "executed": 1692789365 + }, + { + "status": 0, + "executed": 1692789665 + } + ], + "issued": 1692789664, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae11.333 ingressOctets=125440367554321,egressOctets=208358331341188,ingressErrors=0,egressErrors=0,ingressOctetsv6=301817488192,egressOctetsv6=1113568037663,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789665, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae11.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "da70661d-9e9e-4119-b404-1d590cb54f62", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789665 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae12 566", + "handlers": [], + "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, + "duration": 0.6711837, + "executed": 1692789578, + "history": [ + { + "status": 0, + "executed": 1692783573 + }, + { + "status": 0, + "executed": 1692783874 + }, + { + "status": 0, + "executed": 1692784174 + }, + { + "status": 0, + "executed": 1692784474 + }, + { + "status": 0, + "executed": 1692784774 + }, + { + "status": 0, + "executed": 1692785074 + }, + { + "status": 0, + "executed": 1692785374 + }, + { + "status": 0, + "executed": 1692785674 + }, + { + "status": 0, + "executed": 1692785975 + }, + { + "status": 0, + "executed": 1692786275 + }, + { + "status": 0, + "executed": 1692786575 + }, + { + "status": 0, + "executed": 1692786875 + }, + { + "status": 0, + "executed": 1692787175 + }, + { + "status": 0, + "executed": 1692787476 + }, + { + "status": 0, + "executed": 1692787776 + }, + { + "status": 0, + "executed": 1692788077 + }, + { + "status": 0, + "executed": 1692788377 + }, + { + "status": 0, + "executed": 1692788677 + }, + { + "status": 0, + "executed": 1692788978 + }, + { + "status": 0, + "executed": 1692789278 + }, + { + "status": 0, + "executed": 1692789578 + } + ], + "issued": 1692789578, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae12 ingressOctets=190055923982413,egressOctets=241704573728671,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789578, + "occurrences": 34812, + "occurrences_watermark": 34812, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae12", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b1dc5fd2-d9f9-486f-96d9-e6dff777bedc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789579 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae12.1 641", + "handlers": [], + "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, + "duration": 0.672802324, + "executed": 1692789648, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784541 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785743 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786645 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787546 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789648 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae12.1 ingressOctets=69776267375650,egressOctets=838810830,ingressErrors=0,egressErrors=0,ingressOctetsv6=1188881740806,egressOctetsv6=447324177,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789648, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae12.1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "67ac310f-8488-4375-9b4e-5565da417d12", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae12.2 642", + "handlers": [], + "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, + "duration": 0.608801558, + "executed": 1692789676, + "history": [ + { + "status": 0, + "executed": 1692783671 + }, + { + "status": 0, + "executed": 1692783971 + }, + { + "status": 0, + "executed": 1692784271 + }, + { + "status": 0, + "executed": 1692784572 + }, + { + "status": 0, + "executed": 1692784872 + }, + { + "status": 0, + "executed": 1692785172 + }, + { + "status": 0, + "executed": 1692785472 + }, + { + "status": 0, + "executed": 1692785772 + }, + { + "status": 0, + "executed": 1692786072 + }, + { + "status": 0, + "executed": 1692786373 + }, + { + "status": 0, + "executed": 1692786673 + }, + { + "status": 0, + "executed": 1692786973 + }, + { + "status": 0, + "executed": 1692787273 + }, + { + "status": 0, + "executed": 1692787576 + }, + { + "status": 0, + "executed": 1692787875 + }, + { + "status": 0, + "executed": 1692788175 + }, + { + "status": 0, + "executed": 1692788475 + }, + { + "status": 0, + "executed": 1692788775 + }, + { + "status": 0, + "executed": 1692789076 + }, + { + "status": 0, + "executed": 1692789376 + }, + { + "status": 0, + "executed": 1692789676 + } + ], + "issued": 1692789676, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae12.2 ingressOctets=444933550,egressOctets=359566619,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789676, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae12.2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "81e59e34-6ac8-4877-87d5-5f7d0ae82363", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789677 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae12.334 648", + "handlers": [], + "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, + "duration": 0.616355464, + "executed": 1692789711, + "history": [ + { + "status": 0, + "executed": 1692783707 + }, + { + "status": 0, + "executed": 1692784008 + }, + { + "status": 0, + "executed": 1692784308 + }, + { + "status": 0, + "executed": 1692784608 + }, + { + "status": 0, + "executed": 1692784908 + }, + { + "status": 0, + "executed": 1692785208 + }, + { + "status": 0, + "executed": 1692785508 + }, + { + "status": 0, + "executed": 1692785809 + }, + { + "status": 0, + "executed": 1692786109 + }, + { + "status": 0, + "executed": 1692786410 + }, + { + "status": 0, + "executed": 1692786710 + }, + { + "status": 0, + "executed": 1692787010 + }, + { + "status": 0, + "executed": 1692787310 + }, + { + "status": 0, + "executed": 1692787610 + }, + { + "status": 0, + "executed": 1692787910 + }, + { + "status": 0, + "executed": 1692788211 + }, + { + "status": 0, + "executed": 1692788511 + }, + { + "status": 0, + "executed": 1692788811 + }, + { + "status": 0, + "executed": 1692789111 + }, + { + "status": 0, + "executed": 1692789411 + }, + { + "status": 0, + "executed": 1692789711 + } + ], + "issued": 1692789711, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae12.334 ingressOctets=120280480388775,egressOctets=241701242549712,ingressErrors=0,egressErrors=0,ingressOctetsv6=9782336729493,egressOctetsv6=16655027257007,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789711, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae12.334", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "c2972575-4ead-4eb7-84cd-5797af53af5e", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789712 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae2 558", + "handlers": [], + "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, + "duration": 0.749645019, + "executed": 1692789497, + "history": [ + { + "status": 0, + "executed": 1692783492 + }, + { + "status": 0, + "executed": 1692783792 + }, + { + "status": 0, + "executed": 1692784093 + }, + { + "status": 0, + "executed": 1692784393 + }, + { + "status": 0, + "executed": 1692784693 + }, + { + "status": 0, + "executed": 1692784993 + }, + { + "status": 0, + "executed": 1692785293 + }, + { + "status": 0, + "executed": 1692785594 + }, + { + "status": 0, + "executed": 1692785894 + }, + { + "status": 0, + "executed": 1692786194 + }, + { + "status": 0, + "executed": 1692786494 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787095 + }, + { + "status": 0, + "executed": 1692787396 + }, + { + "status": 0, + "executed": 1692787696 + }, + { + "status": 0, + "executed": 1692787997 + }, + { + "status": 0, + "executed": 1692788297 + }, + { + "status": 0, + "executed": 1692788597 + }, + { + "status": 0, + "executed": 1692788897 + }, + { + "status": 0, + "executed": 1692789197 + }, + { + "status": 0, + "executed": 1692789497 + } + ], + "issued": 1692789497, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae2 ingressOctets=14699578313,egressOctets=130653718642,ingressErrors=199,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789497, + "occurrences": 7697, + "occurrences_watermark": 7697, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "df42cab2-7fd0-402c-ac65-9569043974dd", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2566, + "timestamp": 1692789498 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae2.0 740", + "handlers": [], + "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, + "duration": 0.6007213, + "executed": 1692789479, + "history": [ + { + "status": 0, + "executed": 1692783473 + }, + { + "status": 0, + "executed": 1692783773 + }, + { + "status": 0, + "executed": 1692784076 + }, + { + "status": 0, + "executed": 1692784375 + }, + { + "status": 0, + "executed": 1692784675 + }, + { + "status": 0, + "executed": 1692784976 + }, + { + "status": 0, + "executed": 1692785276 + }, + { + "status": 0, + "executed": 1692785576 + }, + { + "status": 0, + "executed": 1692785876 + }, + { + "status": 0, + "executed": 1692786177 + }, + { + "status": 0, + "executed": 1692786477 + }, + { + "status": 0, + "executed": 1692786777 + }, + { + "status": 0, + "executed": 1692787077 + }, + { + "status": 0, + "executed": 1692787378 + }, + { + "status": 0, + "executed": 1692787678 + }, + { + "status": 0, + "executed": 1692787979 + }, + { + "status": 0, + "executed": 1692788279 + }, + { + "status": 0, + "executed": 1692788579 + }, + { + "status": 0, + "executed": 1692788879 + }, + { + "status": 0, + "executed": 1692789179 + }, + { + "status": 0, + "executed": 1692789479 + } + ], + "issued": 1692789479, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae2.0 ingressOctets=14670424259,egressOctets=130408041091,ingressErrors=0,egressErrors=0,ingressOctetsv6=430742230,egressOctetsv6=684007855,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789479, + "occurrences": 7697, + "occurrences_watermark": 7697, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae2.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "22ad5acf-a9b5-4f24-a751-5efdbb1445de", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2566, + "timestamp": 1692789479 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae7 561", + "handlers": [], + "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, + "duration": 0.621170014, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783688 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784589 + }, + { + "status": 0, + "executed": 1692784889 + }, + { + "status": 0, + "executed": 1692785189 + }, + { + "status": 0, + "executed": 1692785489 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786090 + }, + { + "status": 0, + "executed": 1692786390 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786990 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787591 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788191 + }, + { + "status": 0, + "executed": 1692788491 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae7 ingressOctets=855154553991116,egressOctets=507094106624495,ingressErrors=1293,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "ca4aaf7d-042c-4033-80e4-f07b54734939", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae7.0 583", + "handlers": [], + "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, + "duration": 0.629891093, + "executed": 1692789697, + "history": [ + { + "status": 0, + "executed": 1692783694 + }, + { + "status": 0, + "executed": 1692783994 + }, + { + "status": 0, + "executed": 1692784294 + }, + { + "status": 0, + "executed": 1692784595 + }, + { + "status": 0, + "executed": 1692784895 + }, + { + "status": 0, + "executed": 1692785195 + }, + { + "status": 0, + "executed": 1692785495 + }, + { + "status": 0, + "executed": 1692785795 + }, + { + "status": 0, + "executed": 1692786096 + }, + { + "status": 0, + "executed": 1692786396 + }, + { + "status": 0, + "executed": 1692786696 + }, + { + "status": 0, + "executed": 1692786996 + }, + { + "status": 0, + "executed": 1692787296 + }, + { + "status": 0, + "executed": 1692787596 + }, + { + "status": 0, + "executed": 1692787896 + }, + { + "status": 0, + "executed": 1692788196 + }, + { + "status": 0, + "executed": 1692788497 + }, + { + "status": 0, + "executed": 1692788797 + }, + { + "status": 0, + "executed": 1692789097 + }, + { + "status": 0, + "executed": 1692789397 + }, + { + "status": 0, + "executed": 1692789697 + } + ], + "issued": 1692789697, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae7.0 ingressOctets=855153985405548,egressOctets=506869231123247,ingressErrors=0,egressErrors=0,ingressOctetsv6=857414275365,egressOctetsv6=930001738315,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789697, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae7.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5984b6be-9e71-4e6c-8695-9d47d0fbe6a1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789697 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae8 562", + "handlers": [], + "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, + "duration": 0.653029708, + "executed": 1692789691, + "history": [ + { + "status": 0, + "executed": 1692783687 + }, + { + "status": 0, + "executed": 1692783988 + }, + { + "status": 0, + "executed": 1692784288 + }, + { + "status": 0, + "executed": 1692784588 + }, + { + "status": 0, + "executed": 1692784888 + }, + { + "status": 0, + "executed": 1692785188 + }, + { + "status": 0, + "executed": 1692785488 + }, + { + "status": 0, + "executed": 1692785789 + }, + { + "status": 0, + "executed": 1692786089 + }, + { + "status": 0, + "executed": 1692786389 + }, + { + "status": 0, + "executed": 1692786689 + }, + { + "status": 0, + "executed": 1692786989 + }, + { + "status": 0, + "executed": 1692787290 + }, + { + "status": 0, + "executed": 1692787590 + }, + { + "status": 0, + "executed": 1692787890 + }, + { + "status": 0, + "executed": 1692788190 + }, + { + "status": 0, + "executed": 1692788490 + }, + { + "status": 0, + "executed": 1692788791 + }, + { + "status": 0, + "executed": 1692789091 + }, + { + "status": 0, + "executed": 1692789391 + }, + { + "status": 0, + "executed": 1692789691 + } + ], + "issued": 1692789691, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae8 ingressOctets=17783394562360,egressOctets=45802002833267,ingressErrors=84,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789691, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a9ec4723-17d9-4371-bbc7-e07870b16242", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789691 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ae8.0 639", + "handlers": [], + "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, + "duration": 0.692200965, + "executed": 1692789593, + "history": [ + { + "status": 0, + "executed": 1692783589 + }, + { + "status": 0, + "executed": 1692783889 + }, + { + "status": 0, + "executed": 1692784189 + }, + { + "status": 0, + "executed": 1692784489 + }, + { + "status": 0, + "executed": 1692784789 + }, + { + "status": 0, + "executed": 1692785090 + }, + { + "status": 0, + "executed": 1692785390 + }, + { + "status": 0, + "executed": 1692785690 + }, + { + "status": 0, + "executed": 1692785991 + }, + { + "status": 0, + "executed": 1692786291 + }, + { + "status": 0, + "executed": 1692786590 + }, + { + "status": 0, + "executed": 1692786891 + }, + { + "status": 0, + "executed": 1692787191 + }, + { + "status": 0, + "executed": 1692787491 + }, + { + "status": 0, + "executed": 1692787792 + }, + { + "status": 0, + "executed": 1692788092 + }, + { + "status": 0, + "executed": 1692788392 + }, + { + "status": 0, + "executed": 1692788693 + }, + { + "status": 0, + "executed": 1692788993 + }, + { + "status": 0, + "executed": 1692789293 + }, + { + "status": 0, + "executed": 1692789593 + } + ], + "issued": 1692789593, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ae8.0 ingressOctets=17782612729169,egressOctets=45790788463921,ingressErrors=0,egressErrors=0,ingressOctetsv6=44383786634,egressOctetsv6=32095163114,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789593, + "occurrences": 34813, + "occurrences_watermark": 34813, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ae8.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "889ee0f8-788b-4b7b-92bc-ae3abc0c7a9a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789594 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net dsc.0 547", + "handlers": [], + "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, + "duration": 0.676628213, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784018 + }, + { + "status": 0, + "executed": 1692784318 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=dsc.0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-dsc.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a16558b7-0146-4162-91c0-ade5b631e5ca", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789723 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net et-3/0/0 737", + "handlers": [], + "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, + "duration": 0.713603109, + "executed": 1692789461, + "history": [ + { + "status": 0, + "executed": 1692783456 + }, + { + "status": 0, + "executed": 1692783756 + }, + { + "status": 0, + "executed": 1692784056 + }, + { + "status": 0, + "executed": 1692784357 + }, + { + "status": 0, + "executed": 1692784657 + }, + { + "status": 0, + "executed": 1692784957 + }, + { + "status": 0, + "executed": 1692785257 + }, + { + "status": 0, + "executed": 1692785558 + }, + { + "status": 0, + "executed": 1692785858 + }, + { + "status": 0, + "executed": 1692786158 + }, + { + "status": 0, + "executed": 1692786459 + }, + { + "status": 0, + "executed": 1692786759 + }, + { + "status": 0, + "executed": 1692787059 + }, + { + "status": 0, + "executed": 1692787359 + }, + { + "status": 0, + "executed": 1692787660 + }, + { + "status": 0, + "executed": 1692787960 + }, + { + "status": 0, + "executed": 1692788260 + }, + { + "status": 0, + "executed": 1692788560 + }, + { + "status": 0, + "executed": 1692788861 + }, + { + "status": 0, + "executed": 1692789161 + }, + { + "status": 0, + "executed": 1692789461 + } + ], + "issued": 1692789461, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=et-3/0/0 ingressOctets=14710550699,egressOctets=130554284623,ingressErrors=199,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789461, + "occurrences": 8032, + "occurrences_watermark": 8032, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-et-3-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5570bb67-d88d-49c5-8bd9-95aa26e57de8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 2678, + "timestamp": 1692789462 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/1 598", + "handlers": [], + "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, + "duration": 0.689217123, + "executed": 1692789501, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789501 + } + ], + "issued": 1692789501, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789501, + "occurrences": 5429, + "occurrences_watermark": 5429, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d61a6610-e421-4a8c-a42e-7100217c5f1d", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/2 599", + "handlers": [], + "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, + "duration": 0.711312352, + "executed": 1692789435, + "history": [ + { + "status": 0, + "executed": 1692783431 + }, + { + "status": 0, + "executed": 1692783731 + }, + { + "status": 0, + "executed": 1692784031 + }, + { + "status": 0, + "executed": 1692784331 + }, + { + "status": 0, + "executed": 1692784632 + }, + { + "status": 0, + "executed": 1692784932 + }, + { + "status": 0, + "executed": 1692785232 + }, + { + "status": 0, + "executed": 1692785532 + }, + { + "status": 0, + "executed": 1692785832 + }, + { + "status": 0, + "executed": 1692786133 + }, + { + "status": 0, + "executed": 1692786433 + }, + { + "status": 0, + "executed": 1692786733 + }, + { + "status": 0, + "executed": 1692787033 + }, + { + "status": 0, + "executed": 1692787334 + }, + { + "status": 0, + "executed": 1692787634 + }, + { + "status": 0, + "executed": 1692787934 + }, + { + "status": 0, + "executed": 1692788234 + }, + { + "status": 0, + "executed": 1692788534 + }, + { + "status": 0, + "executed": 1692788835 + }, + { + "status": 0, + "executed": 1692789135 + }, + { + "status": 0, + "executed": 1692789435 + } + ], + "issued": 1692789435, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789435, + "occurrences": 7749, + "occurrences_watermark": 7749, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a116e730-1823-4c1a-8067-0c13cbd46366", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789435 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/3 600", + "handlers": [], + "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, + "duration": 0.626306892, + "executed": 1692789650, + "history": [ + { + "status": 0, + "executed": 1692783646 + }, + { + "status": 0, + "executed": 1692783946 + }, + { + "status": 0, + "executed": 1692784246 + }, + { + "status": 0, + "executed": 1692784546 + }, + { + "status": 0, + "executed": 1692784846 + }, + { + "status": 0, + "executed": 1692785146 + }, + { + "status": 0, + "executed": 1692785447 + }, + { + "status": 0, + "executed": 1692785747 + }, + { + "status": 0, + "executed": 1692786048 + }, + { + "status": 0, + "executed": 1692786348 + }, + { + "status": 0, + "executed": 1692786647 + }, + { + "status": 0, + "executed": 1692786948 + }, + { + "status": 0, + "executed": 1692787248 + }, + { + "status": 0, + "executed": 1692787548 + }, + { + "status": 0, + "executed": 1692787849 + }, + { + "status": 0, + "executed": 1692788149 + }, + { + "status": 0, + "executed": 1692788449 + }, + { + "status": 0, + "executed": 1692788749 + }, + { + "status": 0, + "executed": 1692789050 + }, + { + "status": 0, + "executed": 1692789350 + }, + { + "status": 0, + "executed": 1692789650 + } + ], + "issued": 1692789650, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/3 ingressOctets=997289120,egressOctets=1782557578,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789650, + "occurrences": 34814, + "occurrences_watermark": 34814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "10a281a2-7626-401d-b783-0aa4b22941d1", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789650 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/3.21 623", + "handlers": [], + "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, + "duration": 0.625816137, + "executed": 1692789647, + "history": [ + { + "status": 0, + "executed": 1692783641 + }, + { + "status": 0, + "executed": 1692783941 + }, + { + "status": 0, + "executed": 1692784241 + }, + { + "status": 0, + "executed": 1692784542 + }, + { + "status": 0, + "executed": 1692784842 + }, + { + "status": 0, + "executed": 1692785142 + }, + { + "status": 0, + "executed": 1692785442 + }, + { + "status": 0, + "executed": 1692785743 + }, + { + "status": 0, + "executed": 1692786044 + }, + { + "status": 0, + "executed": 1692786345 + }, + { + "status": 0, + "executed": 1692786644 + }, + { + "status": 0, + "executed": 1692786945 + }, + { + "status": 0, + "executed": 1692787245 + }, + { + "status": 0, + "executed": 1692787545 + }, + { + "status": 0, + "executed": 1692787846 + }, + { + "status": 0, + "executed": 1692788146 + }, + { + "status": 0, + "executed": 1692788447 + }, + { + "status": 0, + "executed": 1692788747 + }, + { + "status": 0, + "executed": 1692789047 + }, + { + "status": 0, + "executed": 1692789348 + }, + { + "status": 0, + "executed": 1692789647 + } + ], + "issued": 1692789647, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/3.21 ingressOctets=609508877,egressOctets=616443153,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789647, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-3.21", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "b7561fb3-8d5b-423a-9929-3b8d2d22b950", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789648 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/3.22 624", + "handlers": [], + "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, + "duration": 0.644536342, + "executed": 1692789514, + "history": [ + { + "status": 0, + "executed": 1692783510 + }, + { + "status": 0, + "executed": 1692783810 + }, + { + "status": 0, + "executed": 1692784111 + }, + { + "status": 0, + "executed": 1692784411 + }, + { + "status": 0, + "executed": 1692784711 + }, + { + "status": 0, + "executed": 1692785011 + }, + { + "status": 0, + "executed": 1692785311 + }, + { + "status": 0, + "executed": 1692785612 + }, + { + "status": 0, + "executed": 1692785912 + }, + { + "status": 0, + "executed": 1692786212 + }, + { + "status": 0, + "executed": 1692786512 + }, + { + "status": 0, + "executed": 1692786813 + }, + { + "status": 0, + "executed": 1692787113 + }, + { + "status": 0, + "executed": 1692787413 + }, + { + "status": 0, + "executed": 1692787714 + }, + { + "status": 0, + "executed": 1692788014 + }, + { + "status": 0, + "executed": 1692788314 + }, + { + "status": 0, + "executed": 1692788614 + }, + { + "status": 0, + "executed": 1692788915 + }, + { + "status": 0, + "executed": 1692789215 + }, + { + "status": 0, + "executed": 1692789514 + } + ], + "issued": 1692789514, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/3.22 ingressOctets=0,egressOctets=48336410,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789514, + "occurrences": 34814, + "occurrences_watermark": 34814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-3.22", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7c1f6052-3669-4cbc-ba28-ba8e3159cc02", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789515 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/3.60 627", + "handlers": [], + "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, + "duration": 0.69398807, + "executed": 1692789487, + "history": [ + { + "status": 0, + "executed": 1692783483 + }, + { + "status": 0, + "executed": 1692783783 + }, + { + "status": 0, + "executed": 1692784083 + }, + { + "status": 0, + "executed": 1692784383 + }, + { + "status": 0, + "executed": 1692784683 + }, + { + "status": 0, + "executed": 1692784984 + }, + { + "status": 0, + "executed": 1692785284 + }, + { + "status": 0, + "executed": 1692785584 + }, + { + "status": 0, + "executed": 1692785884 + }, + { + "status": 0, + "executed": 1692786185 + }, + { + "status": 0, + "executed": 1692786485 + }, + { + "status": 0, + "executed": 1692786785 + }, + { + "status": 0, + "executed": 1692787085 + }, + { + "status": 0, + "executed": 1692787386 + }, + { + "status": 0, + "executed": 1692787686 + }, + { + "status": 0, + "executed": 1692787987 + }, + { + "status": 0, + "executed": 1692788287 + }, + { + "status": 0, + "executed": 1692788587 + }, + { + "status": 0, + "executed": 1692788887 + }, + { + "status": 0, + "executed": 1692789187 + }, + { + "status": 0, + "executed": 1692789487 + } + ], + "issued": 1692789487, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/3.60 ingressOctets=246976629,egressOctets=248279901,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789487, + "occurrences": 34812, + "occurrences_watermark": 34812, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-3.60", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "921a3d99-f2f5-42e1-a6a3-acf951946ab8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789488 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/4 601", + "handlers": [], + "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, + "duration": 0.65796911, + "executed": 1692789626, + "history": [ + { + "status": 0, + "executed": 1692783622 + }, + { + "status": 0, + "executed": 1692783922 + }, + { + "status": 0, + "executed": 1692784222 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785423 + }, + { + "status": 0, + "executed": 1692785723 + }, + { + "status": 0, + "executed": 1692786024 + }, + { + "status": 0, + "executed": 1692786324 + }, + { + "status": 0, + "executed": 1692786624 + }, + { + "status": 0, + "executed": 1692786924 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787525 + }, + { + "status": 0, + "executed": 1692787825 + }, + { + "status": 0, + "executed": 1692788125 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789026 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789626 + } + ], + "issued": 1692789626, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/4 ingressOctets=0,egressOctets=701049299,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789626, + "occurrences": 34814, + "occurrences_watermark": 34814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e9f28741-a0be-4db6-a1ca-6d6e731f5922", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/4.0 632", + "handlers": [], + "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, + "duration": 0.774835696, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786300 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/4.0 ingressOctets=0,egressOctets=64793045,ingressErrors=0,egressErrors=0,ingressOctetsv6=0,egressOctetsv6=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 34813, + "occurrences_watermark": 34813, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-4.0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "22333941-79d8-4490-bd02-f1d5f2144ec6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/5 604", + "handlers": [], + "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, + "duration": 0.671075647, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 34809, + "occurrences_watermark": 34809, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "35e5bc49-ff37-4bef-8e6b-9788e1ba91ce", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/6 605", + "handlers": [], + "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, + "duration": 0.650659285, + "executed": 1692789545, + "history": [ + { + "status": 0, + "executed": 1692783542 + }, + { + "status": 0, + "executed": 1692783842 + }, + { + "status": 0, + "executed": 1692784142 + }, + { + "status": 0, + "executed": 1692784442 + }, + { + "status": 0, + "executed": 1692784742 + }, + { + "status": 0, + "executed": 1692785042 + }, + { + "status": 0, + "executed": 1692785342 + }, + { + "status": 0, + "executed": 1692785642 + }, + { + "status": 0, + "executed": 1692785942 + }, + { + "status": 0, + "executed": 1692786243 + }, + { + "status": 0, + "executed": 1692786543 + }, + { + "status": 0, + "executed": 1692786843 + }, + { + "status": 0, + "executed": 1692787143 + }, + { + "status": 0, + "executed": 1692787444 + }, + { + "status": 0, + "executed": 1692787744 + }, + { + "status": 0, + "executed": 1692788045 + }, + { + "status": 0, + "executed": 1692788345 + }, + { + "status": 0, + "executed": 1692788645 + }, + { + "status": 0, + "executed": 1692788945 + }, + { + "status": 0, + "executed": 1692789246 + }, + { + "status": 0, + "executed": 1692789545 + } + ], + "issued": 1692789545, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789545, + "occurrences": 34814, + "occurrences_watermark": 34814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "54239d56-ae55-40dc-ade0-0367e07ac7e2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789546 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/7 606", + "handlers": [], + "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, + "duration": 0.634702462, + "executed": 1692789595, + "history": [ + { + "status": 0, + "executed": 1692783591 + }, + { + "status": 0, + "executed": 1692783891 + }, + { + "status": 0, + "executed": 1692784191 + }, + { + "status": 0, + "executed": 1692784491 + }, + { + "status": 0, + "executed": 1692784791 + }, + { + "status": 0, + "executed": 1692785091 + }, + { + "status": 0, + "executed": 1692785391 + }, + { + "status": 0, + "executed": 1692785691 + }, + { + "status": 0, + "executed": 1692785992 + }, + { + "status": 0, + "executed": 1692786292 + }, + { + "status": 0, + "executed": 1692786592 + }, + { + "status": 0, + "executed": 1692786892 + }, + { + "status": 0, + "executed": 1692787193 + }, + { + "status": 0, + "executed": 1692787493 + }, + { + "status": 0, + "executed": 1692787793 + }, + { + "status": 0, + "executed": 1692788094 + }, + { + "status": 0, + "executed": 1692788394 + }, + { + "status": 0, + "executed": 1692788694 + }, + { + "status": 0, + "executed": 1692788994 + }, + { + "status": 0, + "executed": 1692789295 + }, + { + "status": 0, + "executed": 1692789595 + } + ], + "issued": 1692789595, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789595, + "occurrences": 34812, + "occurrences_watermark": 34812, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a49debd3-ad5d-48d1-befb-57adc60636e6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789595 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/8 607", + "handlers": [], + "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, + "duration": 0.627695984, + "executed": 1692789544, + "history": [ + { + "status": 0, + "executed": 1692783540 + }, + { + "status": 0, + "executed": 1692783841 + }, + { + "status": 0, + "executed": 1692784141 + }, + { + "status": 0, + "executed": 1692784441 + }, + { + "status": 0, + "executed": 1692784741 + }, + { + "status": 0, + "executed": 1692785041 + }, + { + "status": 0, + "executed": 1692785341 + }, + { + "status": 0, + "executed": 1692785641 + }, + { + "status": 0, + "executed": 1692785941 + }, + { + "status": 0, + "executed": 1692786242 + }, + { + "status": 0, + "executed": 1692786542 + }, + { + "status": 0, + "executed": 1692786842 + }, + { + "status": 0, + "executed": 1692787142 + }, + { + "status": 0, + "executed": 1692787443 + }, + { + "status": 0, + "executed": 1692787743 + }, + { + "status": 0, + "executed": 1692788044 + }, + { + "status": 0, + "executed": 1692788344 + }, + { + "status": 0, + "executed": 1692788644 + }, + { + "status": 0, + "executed": 1692788944 + }, + { + "status": 0, + "executed": 1692789244 + }, + { + "status": 0, + "executed": 1692789544 + } + ], + "issued": 1692789544, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789544, + "occurrences": 34814, + "occurrences_watermark": 34814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "fc3cc7ec-55a5-4c6a-8c86-420d5ad6ab95", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789545 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/2/9 608", + "handlers": [], + "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, + "duration": 0.664956551, + "executed": 1692789529, + "history": [ + { + "status": 0, + "executed": 1692783524 + }, + { + "status": 0, + "executed": 1692783825 + }, + { + "status": 0, + "executed": 1692784125 + }, + { + "status": 0, + "executed": 1692784425 + }, + { + "status": 0, + "executed": 1692784725 + }, + { + "status": 0, + "executed": 1692785025 + }, + { + "status": 0, + "executed": 1692785325 + }, + { + "status": 0, + "executed": 1692785626 + }, + { + "status": 0, + "executed": 1692785926 + }, + { + "status": 0, + "executed": 1692786227 + }, + { + "status": 0, + "executed": 1692786527 + }, + { + "status": 0, + "executed": 1692786827 + }, + { + "status": 0, + "executed": 1692787127 + }, + { + "status": 0, + "executed": 1692787427 + }, + { + "status": 0, + "executed": 1692787728 + }, + { + "status": 0, + "executed": 1692788028 + }, + { + "status": 0, + "executed": 1692788328 + }, + { + "status": 0, + "executed": 1692788628 + }, + { + "status": 0, + "executed": 1692788929 + }, + { + "status": 0, + "executed": 1692789229 + }, + { + "status": 0, + "executed": 1692789529 + } + ], + "issued": 1692789528, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/2/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789529, + "occurrences": 34815, + "occurrences_watermark": 34815, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-2-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8d94e470-5652-4210-8b59-97f4185c89f0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3891, + "timestamp": 1692789530 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/0 611", + "handlers": [], + "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, + "duration": 0.600108811, + "executed": 1692789705, + "history": [ + { + "status": 0, + "executed": 1692783702 + }, + { + "status": 0, + "executed": 1692784003 + }, + { + "status": 0, + "executed": 1692784303 + }, + { + "status": 0, + "executed": 1692784603 + }, + { + "status": 0, + "executed": 1692784903 + }, + { + "status": 0, + "executed": 1692785203 + }, + { + "status": 0, + "executed": 1692785504 + }, + { + "status": 0, + "executed": 1692785804 + }, + { + "status": 0, + "executed": 1692786104 + }, + { + "status": 0, + "executed": 1692786405 + }, + { + "status": 0, + "executed": 1692786704 + }, + { + "status": 0, + "executed": 1692787004 + }, + { + "status": 0, + "executed": 1692787305 + }, + { + "status": 0, + "executed": 1692787605 + }, + { + "status": 0, + "executed": 1692787905 + }, + { + "status": 0, + "executed": 1692788205 + }, + { + "status": 0, + "executed": 1692788505 + }, + { + "status": 0, + "executed": 1692788806 + }, + { + "status": 0, + "executed": 1692789106 + }, + { + "status": 0, + "executed": 1692789406 + }, + { + "status": 0, + "executed": 1692789705 + } + ], + "issued": 1692789705, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/3/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789705, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "00851a9f-1d51-4015-9753-62e2127f735a", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789706 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/1 612", + "handlers": [], + "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, + "duration": 0.609579424, + "executed": 1692789712, + "history": [ + { + "status": 0, + "executed": 1692783709 + }, + { + "status": 0, + "executed": 1692784009 + }, + { + "status": 0, + "executed": 1692784309 + }, + { + "status": 0, + "executed": 1692784609 + }, + { + "status": 0, + "executed": 1692784909 + }, + { + "status": 0, + "executed": 1692785209 + }, + { + "status": 0, + "executed": 1692785509 + }, + { + "status": 0, + "executed": 1692785810 + }, + { + "status": 0, + "executed": 1692786110 + }, + { + "status": 0, + "executed": 1692786411 + }, + { + "status": 0, + "executed": 1692786711 + }, + { + "status": 0, + "executed": 1692787011 + }, + { + "status": 0, + "executed": 1692787311 + }, + { + "status": 0, + "executed": 1692787611 + }, + { + "status": 0, + "executed": 1692787911 + }, + { + "status": 0, + "executed": 1692788212 + }, + { + "status": 0, + "executed": 1692788512 + }, + { + "status": 0, + "executed": 1692788812 + }, + { + "status": 0, + "executed": 1692789112 + }, + { + "status": 0, + "executed": 1692789412 + }, + { + "status": 0, + "executed": 1692789712 + } + ], + "issued": 1692789712, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/3/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789712, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a04cc3e2-d6ff-423e-9b89-f71906f4b0c8", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789712 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/2 613", + "handlers": [], + "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, + "duration": 0.645009437, + "executed": 1692789425, + "history": [ + { + "status": 0, + "executed": 1692783421 + }, + { + "status": 0, + "executed": 1692783721 + }, + { + "status": 0, + "executed": 1692784021 + }, + { + "status": 0, + "executed": 1692784321 + }, + { + "status": 0, + "executed": 1692784621 + }, + { + "status": 0, + "executed": 1692784921 + }, + { + "status": 0, + "executed": 1692785221 + }, + { + "status": 0, + "executed": 1692785521 + }, + { + "status": 0, + "executed": 1692785822 + }, + { + "status": 0, + "executed": 1692786122 + }, + { + "status": 0, + "executed": 1692786423 + }, + { + "status": 0, + "executed": 1692786723 + }, + { + "status": 0, + "executed": 1692787023 + }, + { + "status": 0, + "executed": 1692787323 + }, + { + "status": 0, + "executed": 1692787623 + }, + { + "status": 0, + "executed": 1692787924 + }, + { + "status": 0, + "executed": 1692788224 + }, + { + "status": 0, + "executed": 1692788524 + }, + { + "status": 0, + "executed": 1692788824 + }, + { + "status": 0, + "executed": 1692789125 + }, + { + "status": 0, + "executed": 1692789425 + } + ], + "issued": 1692789425, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/3/2 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789425, + "occurrences": 7749, + "occurrences_watermark": 7749, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-3-2", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "69fe7402-46c4-4d6f-a1b9-6b1bd5ceba5f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789425 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/3 614", + "handlers": [], + "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, + "duration": 0.646801916, + "executed": 1692789722, + "history": [ + { + "status": 0, + "executed": 1692783717 + }, + { + "status": 0, + "executed": 1692784017 + }, + { + "status": 0, + "executed": 1692784317 + }, + { + "status": 0, + "executed": 1692784618 + }, + { + "status": 0, + "executed": 1692784918 + }, + { + "status": 0, + "executed": 1692785218 + }, + { + "status": 0, + "executed": 1692785518 + }, + { + "status": 0, + "executed": 1692785819 + }, + { + "status": 0, + "executed": 1692786119 + }, + { + "status": 0, + "executed": 1692786419 + }, + { + "status": 0, + "executed": 1692786720 + }, + { + "status": 0, + "executed": 1692787020 + }, + { + "status": 0, + "executed": 1692787320 + }, + { + "status": 0, + "executed": 1692787621 + }, + { + "status": 0, + "executed": 1692787921 + }, + { + "status": 0, + "executed": 1692788221 + }, + { + "status": 0, + "executed": 1692788521 + }, + { + "status": 0, + "executed": 1692788821 + }, + { + "status": 0, + "executed": 1692789122 + }, + { + "status": 0, + "executed": 1692789422 + }, + { + "status": 0, + "executed": 1692789722 + } + ], + "issued": 1692789721, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/3/3 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789722, + "occurrences": 34812, + "occurrences_watermark": 34812, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-3-3", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5aad7586-1b20-4142-b165-db50996f3953", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789723 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/4 615", + "handlers": [], + "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, + "duration": 0.636506974, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783498 + }, + { + "status": 0, + "executed": 1692783798 + }, + { + "status": 0, + "executed": 1692784099 + }, + { + "status": 0, + "executed": 1692784399 + }, + { + "status": 0, + "executed": 1692784699 + }, + { + "status": 0, + "executed": 1692784999 + }, + { + "status": 0, + "executed": 1692785299 + }, + { + "status": 0, + "executed": 1692785600 + }, + { + "status": 0, + "executed": 1692785900 + }, + { + "status": 0, + "executed": 1692786200 + }, + { + "status": 0, + "executed": 1692786500 + }, + { + "status": 0, + "executed": 1692786801 + }, + { + "status": 0, + "executed": 1692787101 + }, + { + "status": 0, + "executed": 1692787401 + }, + { + "status": 0, + "executed": 1692787702 + }, + { + "status": 0, + "executed": 1692788002 + }, + { + "status": 0, + "executed": 1692788302 + }, + { + "status": 0, + "executed": 1692788602 + }, + { + "status": 0, + "executed": 1692788903 + }, + { + "status": 0, + "executed": 1692789203 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/3/4 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 5429, + "occurrences_watermark": 5429, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-3-4", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "225cf897-921f-4448-91e4-a00b43c4c4a0", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789503 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/5 616", + "handlers": [], + "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, + "duration": 0.625831741, + "executed": 1692789603, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784197 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784798 + }, + { + "status": 0, + "executed": 1692785098 + }, + { + "status": 0, + "executed": 1692785398 + }, + { + "status": 0, + "executed": 1692785698 + }, + { + "status": 0, + "executed": 1692785999 + }, + { + "status": 0, + "executed": 1692786299 + }, + { + "status": 0, + "executed": 1692786600 + }, + { + "status": 0, + "executed": 1692786900 + }, + { + "status": 0, + "executed": 1692787200 + }, + { + "status": 0, + "executed": 1692787500 + }, + { + "status": 0, + "executed": 1692787801 + }, + { + "status": 0, + "executed": 1692788101 + }, + { + "status": 0, + "executed": 1692788402 + }, + { + "status": 0, + "executed": 1692788702 + }, + { + "status": 0, + "executed": 1692789002 + }, + { + "status": 0, + "executed": 1692789302 + }, + { + "status": 0, + "executed": 1692789603 + } + ], + "issued": 1692789602, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/3/5 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789603, + "occurrences": 34815, + "occurrences_watermark": 34815, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-3-5", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "35b13544-347a-46d9-a9cb-efaa6feb3203", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789603 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/6 617", + "handlers": [], + "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, + "duration": 0.654548256, + "executed": 1692789613, + "history": [ + { + "status": 0, + "executed": 1692783608 + }, + { + "status": 0, + "executed": 1692783908 + }, + { + "status": 0, + "executed": 1692784208 + }, + { + "status": 0, + "executed": 1692784508 + }, + { + "status": 0, + "executed": 1692784809 + }, + { + "status": 0, + "executed": 1692785109 + }, + { + "status": 0, + "executed": 1692785409 + }, + { + "status": 0, + "executed": 1692785709 + }, + { + "status": 0, + "executed": 1692786009 + }, + { + "status": 0, + "executed": 1692786309 + }, + { + "status": 0, + "executed": 1692786610 + }, + { + "status": 0, + "executed": 1692786910 + }, + { + "status": 0, + "executed": 1692787210 + }, + { + "status": 0, + "executed": 1692787510 + }, + { + "status": 0, + "executed": 1692787811 + }, + { + "status": 0, + "executed": 1692788111 + }, + { + "status": 0, + "executed": 1692788411 + }, + { + "status": 0, + "executed": 1692788712 + }, + { + "status": 0, + "executed": 1692789012 + }, + { + "status": 0, + "executed": 1692789312 + }, + { + "status": 0, + "executed": 1692789613 + } + ], + "issued": 1692789612, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/3/6 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789613, + "occurrences": 34811, + "occurrences_watermark": 34811, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-3-6", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "e67895be-f668-4ed4-b188-58a788d93f17", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789613 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/7 619", + "handlers": [], + "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, + "duration": 0.646317932, + "executed": 1692789607, + "history": [ + { + "status": 0, + "executed": 1692783602 + }, + { + "status": 0, + "executed": 1692783902 + }, + { + "status": 0, + "executed": 1692784202 + }, + { + "status": 0, + "executed": 1692784503 + }, + { + "status": 0, + "executed": 1692784803 + }, + { + "status": 0, + "executed": 1692785103 + }, + { + "status": 0, + "executed": 1692785403 + }, + { + "status": 0, + "executed": 1692785703 + }, + { + "status": 0, + "executed": 1692786004 + }, + { + "status": 0, + "executed": 1692786304 + }, + { + "status": 0, + "executed": 1692786604 + }, + { + "status": 0, + "executed": 1692786904 + }, + { + "status": 0, + "executed": 1692787205 + }, + { + "status": 0, + "executed": 1692787505 + }, + { + "status": 0, + "executed": 1692787805 + }, + { + "status": 0, + "executed": 1692788106 + }, + { + "status": 0, + "executed": 1692788406 + }, + { + "status": 0, + "executed": 1692788706 + }, + { + "status": 0, + "executed": 1692789006 + }, + { + "status": 0, + "executed": 1692789307 + }, + { + "status": 0, + "executed": 1692789607 + } + ], + "issued": 1692789607, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/3/7 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789607, + "occurrences": 34814, + "occurrences_watermark": 34814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-3-7", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "28b1c0dd-bac3-43bc-ba15-e3822e6563c9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789608 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/8 620", + "handlers": [], + "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, + "duration": 0.636057446, + "executed": 1692789502, + "history": [ + { + "status": 0, + "executed": 1692783497 + }, + { + "status": 0, + "executed": 1692783797 + }, + { + "status": 0, + "executed": 1692784098 + }, + { + "status": 0, + "executed": 1692784398 + }, + { + "status": 0, + "executed": 1692784698 + }, + { + "status": 0, + "executed": 1692784998 + }, + { + "status": 0, + "executed": 1692785298 + }, + { + "status": 0, + "executed": 1692785599 + }, + { + "status": 0, + "executed": 1692785899 + }, + { + "status": 0, + "executed": 1692786199 + }, + { + "status": 0, + "executed": 1692786499 + }, + { + "status": 0, + "executed": 1692786800 + }, + { + "status": 0, + "executed": 1692787100 + }, + { + "status": 0, + "executed": 1692787400 + }, + { + "status": 0, + "executed": 1692787701 + }, + { + "status": 0, + "executed": 1692788001 + }, + { + "status": 0, + "executed": 1692788301 + }, + { + "status": 0, + "executed": 1692788601 + }, + { + "status": 0, + "executed": 1692788902 + }, + { + "status": 0, + "executed": 1692789202 + }, + { + "status": 0, + "executed": 1692789502 + } + ], + "issued": 1692789502, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/3/8 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789502, + "occurrences": 5429, + "occurrences_watermark": 5429, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-3-8", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "94ee4e42-b6f1-4dba-aec4-a74c983e9b9c", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789502 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net ge-0/3/9 622", + "handlers": [], + "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, + "duration": 0.663110107, + "executed": 1692789616, + "history": [ + { + "status": 0, + "executed": 1692783611 + }, + { + "status": 0, + "executed": 1692783911 + }, + { + "status": 0, + "executed": 1692784211 + }, + { + "status": 0, + "executed": 1692784511 + }, + { + "status": 0, + "executed": 1692784811 + }, + { + "status": 0, + "executed": 1692785111 + }, + { + "status": 0, + "executed": 1692785411 + }, + { + "status": 0, + "executed": 1692785711 + }, + { + "status": 0, + "executed": 1692786012 + }, + { + "status": 0, + "executed": 1692786312 + }, + { + "status": 0, + "executed": 1692786613 + }, + { + "status": 0, + "executed": 1692786912 + }, + { + "status": 0, + "executed": 1692787213 + }, + { + "status": 0, + "executed": 1692787514 + }, + { + "status": 0, + "executed": 1692787814 + }, + { + "status": 0, + "executed": 1692788115 + }, + { + "status": 0, + "executed": 1692788414 + }, + { + "status": 0, + "executed": 1692788715 + }, + { + "status": 0, + "executed": 1692789015 + }, + { + "status": 0, + "executed": 1692789316 + }, + { + "status": 0, + "executed": 1692789616 + } + ], + "issued": 1692789615, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=ge-0/3/9 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789616, + "occurrences": 34816, + "occurrences_watermark": 34816, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-ge-0-3-9", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0257bf61-1440-40f6-9b80-49e579607b47", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789616 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net lt-0/0/0 659", + "handlers": [], + "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, + "duration": 0.748320812, + "executed": 1692789618, + "history": [ + { + "status": 0, + "executed": 1692783614 + }, + { + "status": 0, + "executed": 1692783914 + }, + { + "status": 0, + "executed": 1692784214 + }, + { + "status": 0, + "executed": 1692784514 + }, + { + "status": 0, + "executed": 1692784815 + }, + { + "status": 0, + "executed": 1692785115 + }, + { + "status": 0, + "executed": 1692785415 + }, + { + "status": 0, + "executed": 1692785715 + }, + { + "status": 0, + "executed": 1692786015 + }, + { + "status": 0, + "executed": 1692786315 + }, + { + "status": 0, + "executed": 1692786616 + }, + { + "status": 0, + "executed": 1692786916 + }, + { + "status": 0, + "executed": 1692787216 + }, + { + "status": 0, + "executed": 1692787516 + }, + { + "status": 0, + "executed": 1692787816 + }, + { + "status": 0, + "executed": 1692788117 + }, + { + "status": 0, + "executed": 1692788417 + }, + { + "status": 0, + "executed": 1692788717 + }, + { + "status": 0, + "executed": 1692789018 + }, + { + "status": 0, + "executed": 1692789318 + }, + { + "status": 0, + "executed": 1692789618 + } + ], + "issued": 1692789618, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=lt-0/0/0 ingressOctets=206275735985,egressOctets=210725776602,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789618, + "occurrences": 34815, + "occurrences_watermark": 34815, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-lt-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e2ef44b-52b4-41ee-ae37-a5f8cd316e91", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789619 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net lt-0/0/0.16 662", + "handlers": [], + "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, + "duration": 0.74544005, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783494 + }, + { + "status": 0, + "executed": 1692783794 + }, + { + "status": 0, + "executed": 1692784094 + }, + { + "status": 0, + "executed": 1692784394 + }, + { + "status": 0, + "executed": 1692784694 + }, + { + "status": 0, + "executed": 1692784995 + }, + { + "status": 0, + "executed": 1692785295 + }, + { + "status": 0, + "executed": 1692785595 + }, + { + "status": 0, + "executed": 1692785895 + }, + { + "status": 0, + "executed": 1692786196 + }, + { + "status": 0, + "executed": 1692786496 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787098 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787699 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788900 + }, + { + "status": 0, + "executed": 1692789200 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=lt-0/0/0.16 ingressOctets=304952985,egressOctets=122177653889,ingressErrors=0,egressErrors=0,ingressOctetsv6=497160,egressOctetsv6=81228952,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 5429, + "occurrences_watermark": 5429, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-lt-0-0-0.16", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "8d1b8717-c62c-4ea4-9fbb-aa5c393e2afa", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net lt-0/0/0.61 663", + "handlers": [], + "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, + "duration": 0.660705182, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784519 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786021 + }, + { + "status": 0, + "executed": 1692786321 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=lt-0/0/0.61 ingressOctets=205208893845,egressOctets=1059230890,ingressErrors=0,egressErrors=0,ingressOctetsv6=43415460482,egressOctetsv6=824203118,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 34811, + "occurrences_watermark": 34811, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-lt-0-0-0.61", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "eb9f99f7-3747-4765-a744-8596e440db70", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789623 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-0/0/0 526", + "handlers": [], + "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, + "duration": 0.621891904, + "executed": 1692789625, + "history": [ + { + "status": 0, + "executed": 1692783621 + }, + { + "status": 0, + "executed": 1692783921 + }, + { + "status": 0, + "executed": 1692784221 + }, + { + "status": 0, + "executed": 1692784522 + }, + { + "status": 0, + "executed": 1692784822 + }, + { + "status": 0, + "executed": 1692785122 + }, + { + "status": 0, + "executed": 1692785422 + }, + { + "status": 0, + "executed": 1692785722 + }, + { + "status": 0, + "executed": 1692786023 + }, + { + "status": 0, + "executed": 1692786323 + }, + { + "status": 0, + "executed": 1692786623 + }, + { + "status": 0, + "executed": 1692786923 + }, + { + "status": 0, + "executed": 1692787224 + }, + { + "status": 0, + "executed": 1692787524 + }, + { + "status": 0, + "executed": 1692787824 + }, + { + "status": 0, + "executed": 1692788124 + }, + { + "status": 0, + "executed": 1692788425 + }, + { + "status": 0, + "executed": 1692788725 + }, + { + "status": 0, + "executed": 1692789025 + }, + { + "status": 0, + "executed": 1692789326 + }, + { + "status": 0, + "executed": 1692789625 + } + ], + "issued": 1692789625, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-0/0/0 ingressOctets=283009052735,egressOctets=9834663396,ingressErrors=163265,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789625, + "occurrences": 34812, + "occurrences_watermark": 34812, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-0-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "9bb6956a-d64e-4a85-8e8c-a2c99a6e6582", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789626 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-0/0/1 527", + "handlers": [], + "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, + "duration": 0.657972557, + "executed": 1692789512, + "history": [ + { + "status": 0, + "executed": 1692783508 + }, + { + "status": 0, + "executed": 1692783808 + }, + { + "status": 0, + "executed": 1692784108 + }, + { + "status": 0, + "executed": 1692784408 + }, + { + "status": 0, + "executed": 1692784708 + }, + { + "status": 0, + "executed": 1692785009 + }, + { + "status": 0, + "executed": 1692785309 + }, + { + "status": 0, + "executed": 1692785609 + }, + { + "status": 0, + "executed": 1692785909 + }, + { + "status": 0, + "executed": 1692786210 + }, + { + "status": 0, + "executed": 1692786510 + }, + { + "status": 0, + "executed": 1692786810 + }, + { + "status": 0, + "executed": 1692787110 + }, + { + "status": 0, + "executed": 1692787411 + }, + { + "status": 0, + "executed": 1692787711 + }, + { + "status": 0, + "executed": 1692788012 + }, + { + "status": 0, + "executed": 1692788312 + }, + { + "status": 0, + "executed": 1692788612 + }, + { + "status": 0, + "executed": 1692788912 + }, + { + "status": 0, + "executed": 1692789212 + }, + { + "status": 0, + "executed": 1692789512 + } + ], + "issued": 1692789512, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-0/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789512, + "occurrences": 34811, + "occurrences_watermark": 34811, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-0-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "91af5576-3d5f-4ba4-a17b-14dcb00bd5cc", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789512 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-0/1/1 529", + "handlers": [], + "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, + "duration": 0.638953839, + "executed": 1692789516, + "history": [ + { + "status": 0, + "executed": 1692783512 + }, + { + "status": 0, + "executed": 1692783812 + }, + { + "status": 0, + "executed": 1692784112 + }, + { + "status": 0, + "executed": 1692784412 + }, + { + "status": 0, + "executed": 1692784712 + }, + { + "status": 0, + "executed": 1692785013 + }, + { + "status": 0, + "executed": 1692785313 + }, + { + "status": 0, + "executed": 1692785613 + }, + { + "status": 0, + "executed": 1692785913 + }, + { + "status": 0, + "executed": 1692786214 + }, + { + "status": 0, + "executed": 1692786514 + }, + { + "status": 0, + "executed": 1692786814 + }, + { + "status": 0, + "executed": 1692787114 + }, + { + "status": 0, + "executed": 1692787415 + }, + { + "status": 0, + "executed": 1692787715 + }, + { + "status": 0, + "executed": 1692788016 + }, + { + "status": 0, + "executed": 1692788316 + }, + { + "status": 0, + "executed": 1692788616 + }, + { + "status": 0, + "executed": 1692788916 + }, + { + "status": 0, + "executed": 1692789216 + }, + { + "status": 0, + "executed": 1692789516 + } + ], + "issued": 1692789516, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-0/1/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789516, + "occurrences": 34812, + "occurrences_watermark": 34812, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-0-1-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "0e66a72b-9de1-4b5a-ac4c-039f4359fe00", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789516 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/0/0 634", + "handlers": [], + "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, + "duration": 0.660215521, + "executed": 1692789638, + "history": [ + { + "status": 0, + "executed": 1692783634 + }, + { + "status": 0, + "executed": 1692783934 + }, + { + "status": 0, + "executed": 1692784234 + }, + { + "status": 0, + "executed": 1692784534 + }, + { + "status": 0, + "executed": 1692784834 + }, + { + "status": 0, + "executed": 1692785134 + }, + { + "status": 0, + "executed": 1692785435 + }, + { + "status": 0, + "executed": 1692785735 + }, + { + "status": 0, + "executed": 1692786035 + }, + { + "status": 0, + "executed": 1692786335 + }, + { + "status": 0, + "executed": 1692786636 + }, + { + "status": 0, + "executed": 1692786936 + }, + { + "status": 0, + "executed": 1692787236 + }, + { + "status": 0, + "executed": 1692787536 + }, + { + "status": 0, + "executed": 1692787837 + }, + { + "status": 0, + "executed": 1692788137 + }, + { + "status": 0, + "executed": 1692788437 + }, + { + "status": 0, + "executed": 1692788737 + }, + { + "status": 0, + "executed": 1692789038 + }, + { + "status": 0, + "executed": 1692789338 + }, + { + "status": 0, + "executed": 1692789638 + } + ], + "issued": 1692789638, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-1/0/0 ingressOctets=239872881137,egressOctets=2743718965,ingressErrors=168850,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789638, + "occurrences": 34815, + "occurrences_watermark": 34815, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-1-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dfd9f094-9095-41c3-b9db-c2a571ff7e97", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789639 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/0/1 633", + "handlers": [], + "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, + "duration": 0.60117485, + "executed": 1692789702, + "history": [ + { + "status": 0, + "executed": 1692783698 + }, + { + "status": 0, + "executed": 1692783999 + }, + { + "status": 0, + "executed": 1692784299 + }, + { + "status": 0, + "executed": 1692784599 + }, + { + "status": 0, + "executed": 1692784899 + }, + { + "status": 0, + "executed": 1692785199 + }, + { + "status": 0, + "executed": 1692785499 + }, + { + "status": 0, + "executed": 1692785800 + }, + { + "status": 0, + "executed": 1692786100 + }, + { + "status": 0, + "executed": 1692786400 + }, + { + "status": 0, + "executed": 1692786700 + }, + { + "status": 0, + "executed": 1692787000 + }, + { + "status": 0, + "executed": 1692787301 + }, + { + "status": 0, + "executed": 1692787601 + }, + { + "status": 0, + "executed": 1692787901 + }, + { + "status": 0, + "executed": 1692788202 + }, + { + "status": 0, + "executed": 1692788502 + }, + { + "status": 0, + "executed": 1692788802 + }, + { + "status": 0, + "executed": 1692789102 + }, + { + "status": 0, + "executed": 1692789402 + }, + { + "status": 0, + "executed": 1692789702 + } + ], + "issued": 1692789702, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-1/0/1 ingressOctets=192409763001414,egressOctets=356476248201717,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789702, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-1-0-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "dcde4170-93cc-4f9e-91f1-d38ca770b53b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789702 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/0/1.100 543", + "handlers": [], + "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, + "duration": 0.627941778, + "executed": 1692789493, + "history": [ + { + "status": 0, + "executed": 1692783489 + }, + { + "status": 0, + "executed": 1692783789 + }, + { + "status": 0, + "executed": 1692784090 + }, + { + "status": 0, + "executed": 1692784390 + }, + { + "status": 0, + "executed": 1692784690 + }, + { + "status": 0, + "executed": 1692784990 + }, + { + "status": 0, + "executed": 1692785290 + }, + { + "status": 0, + "executed": 1692785591 + }, + { + "status": 0, + "executed": 1692785891 + }, + { + "status": 0, + "executed": 1692786191 + }, + { + "status": 0, + "executed": 1692786491 + }, + { + "status": 0, + "executed": 1692786792 + }, + { + "status": 0, + "executed": 1692787092 + }, + { + "status": 0, + "executed": 1692787392 + }, + { + "status": 0, + "executed": 1692787693 + }, + { + "status": 0, + "executed": 1692787993 + }, + { + "status": 0, + "executed": 1692788293 + }, + { + "status": 0, + "executed": 1692788593 + }, + { + "status": 0, + "executed": 1692788894 + }, + { + "status": 0, + "executed": 1692789194 + }, + { + "status": 0, + "executed": 1692789493 + } + ], + "issued": 1692789493, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-1/0/1.100 ingressOctets=24591270652278,egressOctets=209117750392250,ingressErrors=0,egressErrors=0,ingressOctetsv6=884612094120,egressOctetsv6=853741375711,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789493, + "occurrences": 5429, + "occurrences_watermark": 5429, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-1-0-1.100", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "50a52149-2dac-4af2-862e-831faef68fd9", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789494 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/0/1.333 549", + "handlers": [], + "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, + "duration": 0.704850716, + "executed": 1692789500, + "history": [ + { + "status": 0, + "executed": 1692783496 + }, + { + "status": 0, + "executed": 1692783796 + }, + { + "status": 0, + "executed": 1692784097 + }, + { + "status": 0, + "executed": 1692784397 + }, + { + "status": 0, + "executed": 1692784697 + }, + { + "status": 0, + "executed": 1692784997 + }, + { + "status": 0, + "executed": 1692785297 + }, + { + "status": 0, + "executed": 1692785598 + }, + { + "status": 0, + "executed": 1692785898 + }, + { + "status": 0, + "executed": 1692786198 + }, + { + "status": 0, + "executed": 1692786498 + }, + { + "status": 0, + "executed": 1692786799 + }, + { + "status": 0, + "executed": 1692787099 + }, + { + "status": 0, + "executed": 1692787399 + }, + { + "status": 0, + "executed": 1692787700 + }, + { + "status": 0, + "executed": 1692788000 + }, + { + "status": 0, + "executed": 1692788300 + }, + { + "status": 0, + "executed": 1692788600 + }, + { + "status": 0, + "executed": 1692788901 + }, + { + "status": 0, + "executed": 1692789201 + }, + { + "status": 0, + "executed": 1692789500 + } + ], + "issued": 1692789500, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-1/0/1.333 ingressOctets=167815792671318,egressOctets=147349727236304,ingressErrors=0,egressErrors=0,ingressOctetsv6=84325275086617,egressOctetsv6=5875054778,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789500, + "occurrences": 34809, + "occurrences_watermark": 34809, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-1-0-1.333", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d451d7ca-4d83-4934-9147-d005c918b3e6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789501 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/1/0 636", + "handlers": [], + "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, + "duration": 0.602761838, + "executed": 1692789531, + "history": [ + { + "status": 0, + "executed": 1692783526 + }, + { + "status": 0, + "executed": 1692783826 + }, + { + "status": 0, + "executed": 1692784126 + }, + { + "status": 0, + "executed": 1692784426 + }, + { + "status": 0, + "executed": 1692784726 + }, + { + "status": 0, + "executed": 1692785027 + }, + { + "status": 0, + "executed": 1692785327 + }, + { + "status": 0, + "executed": 1692785628 + }, + { + "status": 0, + "executed": 1692785928 + }, + { + "status": 0, + "executed": 1692786229 + }, + { + "status": 0, + "executed": 1692786528 + }, + { + "status": 0, + "executed": 1692786829 + }, + { + "status": 0, + "executed": 1692787129 + }, + { + "status": 0, + "executed": 1692787429 + }, + { + "status": 0, + "executed": 1692787730 + }, + { + "status": 0, + "executed": 1692788030 + }, + { + "status": 0, + "executed": 1692788330 + }, + { + "status": 0, + "executed": 1692788630 + }, + { + "status": 0, + "executed": 1692788931 + }, + { + "status": 0, + "executed": 1692789231 + }, + { + "status": 0, + "executed": 1692789531 + } + ], + "issued": 1692789531, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-1/1/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789531, + "occurrences": 34812, + "occurrences_watermark": 34812, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-1-1-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "7cf2112d-250b-4375-8cdf-3d8105eb48f5", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789532 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/2/0 645", + "handlers": [], + "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, + "duration": 0.60754775, + "executed": 1692789481, + "history": [ + { + "status": 0, + "executed": 1692783477 + }, + { + "status": 0, + "executed": 1692783777 + }, + { + "status": 0, + "executed": 1692784077 + }, + { + "status": 0, + "executed": 1692784378 + }, + { + "status": 0, + "executed": 1692784678 + }, + { + "status": 0, + "executed": 1692784978 + }, + { + "status": 0, + "executed": 1692785278 + }, + { + "status": 0, + "executed": 1692785579 + }, + { + "status": 0, + "executed": 1692785879 + }, + { + "status": 0, + "executed": 1692786179 + }, + { + "status": 0, + "executed": 1692786479 + }, + { + "status": 0, + "executed": 1692786780 + }, + { + "status": 0, + "executed": 1692787080 + }, + { + "status": 0, + "executed": 1692787380 + }, + { + "status": 0, + "executed": 1692787681 + }, + { + "status": 0, + "executed": 1692787981 + }, + { + "status": 0, + "executed": 1692788281 + }, + { + "status": 0, + "executed": 1692788581 + }, + { + "status": 0, + "executed": 1692788882 + }, + { + "status": 0, + "executed": 1692789182 + }, + { + "status": 0, + "executed": 1692789481 + } + ], + "issued": 1692789481, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-1/2/0 ingressOctets=213357537860625,egressOctets=130541935276863,ingressErrors=499,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789481, + "occurrences": 5429, + "occurrences_watermark": 5429, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-1-2-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "6f26ec93-9c6f-4d4a-9347-c5aca2333854", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3889, + "timestamp": 1692789482 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/2/1 646", + "handlers": [], + "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, + "duration": 0.604439871, + "executed": 1692789656, + "history": [ + { + "status": 0, + "executed": 1692783652 + }, + { + "status": 0, + "executed": 1692783952 + }, + { + "status": 0, + "executed": 1692784252 + }, + { + "status": 0, + "executed": 1692784552 + }, + { + "status": 0, + "executed": 1692784853 + }, + { + "status": 0, + "executed": 1692785153 + }, + { + "status": 0, + "executed": 1692785453 + }, + { + "status": 0, + "executed": 1692785753 + }, + { + "status": 0, + "executed": 1692786054 + }, + { + "status": 0, + "executed": 1692786354 + }, + { + "status": 0, + "executed": 1692786653 + }, + { + "status": 0, + "executed": 1692786953 + }, + { + "status": 0, + "executed": 1692787254 + }, + { + "status": 0, + "executed": 1692787554 + }, + { + "status": 0, + "executed": 1692787855 + }, + { + "status": 0, + "executed": 1692788155 + }, + { + "status": 0, + "executed": 1692788455 + }, + { + "status": 0, + "executed": 1692788755 + }, + { + "status": 0, + "executed": 1692789056 + }, + { + "status": 0, + "executed": 1692789356 + }, + { + "status": 0, + "executed": 1692789656 + } + ], + "issued": 1692789656, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-1/2/1 ingressOctets=209199037206033,egressOctets=128045208318725,ingressErrors=249,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789656, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-1-2-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "a6c9c4d3-cbf0-49af-9379-aa78341ad27f", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789656 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/3/0 672", + "handlers": [], + "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, + "duration": 0.603053906, + "executed": 1692789585, + "history": [ + { + "status": 0, + "executed": 1692783581 + }, + { + "status": 0, + "executed": 1692783881 + }, + { + "status": 0, + "executed": 1692784181 + }, + { + "status": 0, + "executed": 1692784481 + }, + { + "status": 0, + "executed": 1692784781 + }, + { + "status": 0, + "executed": 1692785081 + }, + { + "status": 0, + "executed": 1692785381 + }, + { + "status": 0, + "executed": 1692785681 + }, + { + "status": 0, + "executed": 1692785982 + }, + { + "status": 0, + "executed": 1692786282 + }, + { + "status": 0, + "executed": 1692786582 + }, + { + "status": 0, + "executed": 1692786882 + }, + { + "status": 0, + "executed": 1692787183 + }, + { + "status": 0, + "executed": 1692787483 + }, + { + "status": 0, + "executed": 1692787783 + }, + { + "status": 0, + "executed": 1692788084 + }, + { + "status": 0, + "executed": 1692788384 + }, + { + "status": 0, + "executed": 1692788684 + }, + { + "status": 0, + "executed": 1692788984 + }, + { + "status": 0, + "executed": 1692789285 + }, + { + "status": 0, + "executed": 1692789585 + } + ], + "issued": 1692789585, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-1/3/0 ingressOctets=216687776044674,egressOctets=124011073521510,ingressErrors=300,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789585, + "occurrences": 34813, + "occurrences_watermark": 34813, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-1-3-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent03.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "4c68402e-ded5-429e-b605-b82a1ad4b9c6", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789586 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-1/3/1 673", + "handlers": [], + "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, + "duration": 0.80000602, + "executed": 1692789604, + "history": [ + { + "status": 0, + "executed": 1692783597 + }, + { + "status": 0, + "executed": 1692783897 + }, + { + "status": 0, + "executed": 1692784198 + }, + { + "status": 0, + "executed": 1692784498 + }, + { + "status": 0, + "executed": 1692784799 + }, + { + "status": 0, + "executed": 1692785099 + }, + { + "status": 0, + "executed": 1692785399 + }, + { + "status": 0, + "executed": 1692785699 + }, + { + "status": 0, + "executed": 1692786000 + }, + { + "status": 0, + "executed": 1692786301 + }, + { + "status": 0, + "executed": 1692786601 + }, + { + "status": 0, + "executed": 1692786901 + }, + { + "status": 0, + "executed": 1692787201 + }, + { + "status": 0, + "executed": 1692787501 + }, + { + "status": 0, + "executed": 1692787802 + }, + { + "status": 0, + "executed": 1692788102 + }, + { + "status": 0, + "executed": 1692788403 + }, + { + "status": 0, + "executed": 1692788703 + }, + { + "status": 0, + "executed": 1692789003 + }, + { + "status": 0, + "executed": 1692789303 + }, + { + "status": 0, + "executed": 1692789604 + } + ], + "issued": 1692789603, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-1/3/1 ingressOctets=215903358763748,egressOctets=124484027052272,ingressErrors=245,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789604, + "occurrences": 34814, + "occurrences_watermark": 34814, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-1-3-1", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent01.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "5fbd49db-22ea-48a9-abaa-57377c76052b", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789604 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/0/0 689", + "handlers": [], + "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, + "duration": 0.602905372, + "executed": 1692789678, + "history": [ + { + "status": 0, + "executed": 1692783674 + }, + { + "status": 0, + "executed": 1692783974 + }, + { + "status": 0, + "executed": 1692784274 + }, + { + "status": 0, + "executed": 1692784575 + }, + { + "status": 0, + "executed": 1692784875 + }, + { + "status": 0, + "executed": 1692785175 + }, + { + "status": 0, + "executed": 1692785475 + }, + { + "status": 0, + "executed": 1692785775 + }, + { + "status": 0, + "executed": 1692786076 + }, + { + "status": 0, + "executed": 1692786376 + }, + { + "status": 0, + "executed": 1692786675 + }, + { + "status": 0, + "executed": 1692786976 + }, + { + "status": 0, + "executed": 1692787276 + }, + { + "status": 0, + "executed": 1692787577 + }, + { + "status": 0, + "executed": 1692787876 + }, + { + "status": 0, + "executed": 1692788177 + }, + { + "status": 0, + "executed": 1692788477 + }, + { + "status": 0, + "executed": 1692788777 + }, + { + "status": 0, + "executed": 1692789078 + }, + { + "status": 0, + "executed": 1692789378 + }, + { + "status": 0, + "executed": 1692789678 + } + ], + "issued": 1692789678, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-2/0/0 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789678, + "occurrences": 7750, + "occurrences_watermark": 7750, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "influx-db-handler" + ], + "env_vars": null, + "metadata": { + "name": "ifc-mx1.sof.bg.geant.net-xe-2-0-0", + "namespace": "default" + }, + "secrets": null, + "is_silenced": false, + "scheduler": "etcd", + "processed_by": "test-poller-sensu-agent02.geant.org", + "pipelines": [] + }, + "entity": { + "entity_class": "proxy", + "system": { + "network": { + "interfaces": null + }, + "libc_type": "", + "vm_system": "", + "vm_role": "", + "cloud_provider": "", + "processes": null + }, + "subscriptions": [ + "entity:mx1.sof.bg.geant.net" + ], + "last_seen": 0, + "deregister": false, + "deregistration": {}, + "metadata": { + "name": "mx1.sof.bg.geant.net", + "namespace": "default" + }, + "sensu_agent_version": "" + }, + "id": "d5900975-7b9c-41e1-aa45-83a0326731b2", + "metadata": { + "namespace": "default" + }, + "pipelines": null, + "sequence": 3890, + "timestamp": 1692789679 + }, + { + "check": { + "command": "/var/lib/sensu/bin/counter2influx.sh counters 0pBiFbD mx1.sof.bg.geant.net xe-2/0/1 690", + "handlers": [], + "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, + "duration": 0.793809989, + "executed": 1692789623, + "history": [ + { + "status": 0, + "executed": 1692783618 + }, + { + "status": 0, + "executed": 1692783918 + }, + { + "status": 0, + "executed": 1692784218 + }, + { + "status": 0, + "executed": 1692784518 + }, + { + "status": 0, + "executed": 1692784819 + }, + { + "status": 0, + "executed": 1692785119 + }, + { + "status": 0, + "executed": 1692785419 + }, + { + "status": 0, + "executed": 1692785719 + }, + { + "status": 0, + "executed": 1692786020 + }, + { + "status": 0, + "executed": 1692786320 + }, + { + "status": 0, + "executed": 1692786621 + }, + { + "status": 0, + "executed": 1692786921 + }, + { + "status": 0, + "executed": 1692787221 + }, + { + "status": 0, + "executed": 1692787522 + }, + { + "status": 0, + "executed": 1692787822 + }, + { + "status": 0, + "executed": 1692788122 + }, + { + "status": 0, + "executed": 1692788422 + }, + { + "status": 0, + "executed": 1692788722 + }, + { + "status": 0, + "executed": 1692789023 + }, + { + "status": 0, + "executed": 1692789323 + }, + { + "status": 0, + "executed": 1692789623 + } + ], + "issued": 1692789623, + "output": "counters,hostname=mx1.sof.bg.geant.net,interface_name=xe-2/0/1 ingressOctets=0,egressOctets=0,ingressErrors=0,egressErrors=0,ingressDiscards=0,egressDiscards=0\n", + "state": "passing", + "status": 0, + "total_state_change": 0, + "last_ok": 1692789623, + "occurrences": 34812, + "occurrences_watermark": 34812, + "output_metric_format": "influxdb_line", + "output_metric_handlers": [ + "in