From 9d22f7d0ab7c0c1a2aaf6b31e355ab8ad418223a Mon Sep 17 00:00:00 2001 From: Luca Gambarotto Date: Sun, 14 Jan 2024 18:51:42 +0100 Subject: [PATCH] Added kuma --- .../generate_kuma_config.py | 107 + .../monitor_configuration.json | 5200 +++++++++++++++++ .../monitor_object.json | 89 + .../outer_structure.json | 5 + kuma/generate_configuration/sample.xlsx | Bin 0 -> 21368 bytes kuma/generate_configuration/tag_object.json | 8 + kuma/readme.md | 9 + 7 files changed, 5418 insertions(+) create mode 100644 kuma/generate_configuration/generate_kuma_config.py create mode 100644 kuma/generate_configuration/monitor_configuration.json create mode 100644 kuma/generate_configuration/monitor_object.json create mode 100644 kuma/generate_configuration/outer_structure.json create mode 100644 kuma/generate_configuration/sample.xlsx create mode 100644 kuma/generate_configuration/tag_object.json create mode 100644 kuma/readme.md diff --git a/kuma/generate_configuration/generate_kuma_config.py b/kuma/generate_configuration/generate_kuma_config.py new file mode 100644 index 0000000..b878faf --- /dev/null +++ b/kuma/generate_configuration/generate_kuma_config.py @@ -0,0 +1,107 @@ +import json +import copy +import openpyxl + + +def get_colors(): + colors = ["#E74C3C", "#9B59B6", "#2980B9", "#27AE60", "#F1C40F", "#D35400", "#95A5A6", "#2E4053"] + return colors + +def load_json_file(file_path): + try: + with open(file_path, 'r') as file: + data = json.load(file) + return data + except FileNotFoundError: + print(f"Error: File '{file_path}' not found.") + except json.JSONDecodeError: + print(f"Error: Unable to decode JSON in '{file_path}'. Check if the file is a valid JSON.") + except Exception as e: + print(f"An unexpected error occurred: {e}") + +def get_tag(tag_name, monitor_id): + + colors = get_colors() + + if not hasattr(get_tag, "tags"): + get_tag.tags = {} + + if not hasattr(get_tag, "tag_id"): + get_tag.tag_id = 0 + + if not hasattr(get_tag, "id"): + get_tag.id = 0 + + tag = copy.deepcopy(get_tag.tags.get(tag_name, None)) + + # Access and modify the static variable + if not tag: + get_tag.tag_id += 1 + tag = load_json_file('tag_object.json') + tag["name"] = tag_name + tag["tag_id"] = get_tag.tag_id + tag["color"] = colors[get_tag.tag_id % len(colors)] + get_tag.tags[tag_name] = tag + + tag["monitor_id"] = monitor_id + get_tag.id += 1 + tag["id"] = get_tag.id + + return tag + +def get_monitor(name, ip_address, tag_list): + + if not hasattr(get_monitor, "id"): + get_monitor.id = 0 + + get_monitor.id += 1 + + monitor = load_json_file('monitor_object.json') + + monitor["id"] = get_monitor.id + monitor["name"] = name + monitor["pathName"] = name + monitor["hostname"] = ip_address + + tags = monitor.get('tags', []) + + for tag in tag_list: + tag_obj = get_tag(tag, get_monitor.id) + tags.append(tag_obj) + + return monitor + +def read_excel_file(file_path): + + df = openpyxl.load_workbook(file_path) + df = df.active + + return df + + + + + +# Load the JSON file +outer_structure = load_json_file('outer_structure.json') + +monitorList = outer_structure.get('monitorList', []) + + +data = read_excel_file("Z:\ips.xlsx") + +for row_num in range(1, data.max_row + 1): + service_name = data.cell(row=row_num, column=2).value + ip_address = data.cell(row=row_num, column=1).value + tag = data.cell(row=row_num, column=4).value + + if service_name is not None: + monitorList.append(get_monitor(service_name, ip_address, [tag])) + + + +# Save the configuration json +file_path = "monitor_configuration.json" + +with open(file_path, 'w') as json_file: + json.dump(outer_structure, json_file, indent=2) diff --git a/kuma/generate_configuration/monitor_configuration.json b/kuma/generate_configuration/monitor_configuration.json new file mode 100644 index 0000000..f21f5fd --- /dev/null +++ b/kuma/generate_configuration/monitor_configuration.json @@ -0,0 +1,5200 @@ +{ + "version": "1.23.11", + "notificationList": [], + "monitorList": [ + { + "id": 1, + "name": "Server", + "description": null, + "pathName": "Server", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.1", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 1, + "monitor_id": 1, + "tag_id": 1, + "value": "", + "name": "Network", + "color": "#9B59B6" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 2, + "name": "Gateway", + "description": null, + "pathName": "Gateway", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.2", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 2, + "monitor_id": 2, + "tag_id": 1, + "value": "", + "name": "Network", + "color": "#9B59B6" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 3, + "name": "Router_luca", + "description": null, + "pathName": "Router_luca", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.3", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 3, + "monitor_id": 3, + "tag_id": 1, + "value": "", + "name": "Network", + "color": "#9B59B6" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 4, + "name": "Router_garage", + "description": null, + "pathName": "Router_garage", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.4", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 4, + "monitor_id": 4, + "tag_id": 1, + "value": "", + "name": "Network", + "color": "#9B59B6" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 5, + "name": "Router_cucina", + "description": null, + "pathName": "Router_cucina", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.5", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 5, + "monitor_id": 5, + "tag_id": 1, + "value": "", + "name": "Network", + "color": "#9B59B6" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 6, + "name": "Proxmox", + "description": null, + "pathName": "Proxmox", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.50", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 6, + "monitor_id": 6, + "tag_id": 1, + "value": "", + "name": "Network", + "color": "#9B59B6" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 7, + "name": "Samba_users", + "description": null, + "pathName": "Samba_users", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.51", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 7, + "monitor_id": 7, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 8, + "name": "Emby", + "description": null, + "pathName": "Emby", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.53", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 8, + "monitor_id": 8, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 9, + "name": "Nginx", + "description": null, + "pathName": "Nginx", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.54", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 9, + "monitor_id": 9, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 10, + "name": "Pihole", + "description": null, + "pathName": "Pihole", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.56", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 10, + "monitor_id": 10, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 11, + "name": "Gitea", + "description": null, + "pathName": "Gitea", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.58", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 11, + "monitor_id": 11, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 12, + "name": "Wordpress", + "description": null, + "pathName": "Wordpress", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.61", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 12, + "monitor_id": 12, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 13, + "name": "Nginx_stream", + "description": null, + "pathName": "Nginx_stream", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.62", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 13, + "monitor_id": 13, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 14, + "name": "Bookstack", + "description": null, + "pathName": "Bookstack", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.65", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 14, + "monitor_id": 14, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 15, + "name": "Immich", + "description": null, + "pathName": "Immich", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.66", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 15, + "monitor_id": 15, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 16, + "name": "Kuma Uptime", + "description": null, + "pathName": "Kuma Uptime", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.68", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 16, + "monitor_id": 16, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 17, + "name": "Komga", + "description": null, + "pathName": "Komga", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.74", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 17, + "monitor_id": 17, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 18, + "name": "Nextcloud", + "description": null, + "pathName": "Nextcloud", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.75", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 18, + "monitor_id": 18, + "tag_id": 2, + "value": "", + "name": "Service", + "color": "#2980B9" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 19, + "name": "HP_smart (eth)", + "description": null, + "pathName": "HP_smart (eth)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.105", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 19, + "monitor_id": 19, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 20, + "name": "Ajax", + "description": null, + "pathName": "Ajax", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.130", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 20, + "monitor_id": 20, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 21, + "name": "Luca-Intel", + "description": null, + "pathName": "Luca-Intel", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.200", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 21, + "monitor_id": 21, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 22, + "name": "Luca-AMD", + "description": null, + "pathName": "Luca-AMD", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.201", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 22, + "monitor_id": 22, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 23, + "name": "Luca-iPhone", + "description": null, + "pathName": "Luca-iPhone", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.202", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 23, + "monitor_id": 23, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 24, + "name": "Luca-Polimi", + "description": null, + "pathName": "Luca-Polimi", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.203", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 24, + "monitor_id": 24, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 25, + "name": "Luca-Surface", + "description": null, + "pathName": "Luca-Surface", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.204", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 25, + "monitor_id": 25, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 26, + "name": "Luca-MSI (wifi)", + "description": null, + "pathName": "Luca-MSI (wifi)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.205", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 26, + "monitor_id": 26, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 27, + "name": "Paolo-phone", + "description": null, + "pathName": "Paolo-phone", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.206", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 27, + "monitor_id": 27, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 28, + "name": "Rosella-phone", + "description": null, + "pathName": "Rosella-phone", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.207", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 28, + "monitor_id": 28, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 29, + "name": "EchoDot (matrimoniale)", + "description": null, + "pathName": "EchoDot (matrimoniale)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.220", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 29, + "monitor_id": 29, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 30, + "name": "EchoDot (giardino)", + "description": null, + "pathName": "EchoDot (giardino)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.221", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 30, + "monitor_id": 30, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 31, + "name": "EchoFlex", + "description": null, + "pathName": "EchoFlex", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.222", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 31, + "monitor_id": 31, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 32, + "name": "EchoShow (cucina)", + "description": null, + "pathName": "EchoShow (cucina)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.223", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 32, + "monitor_id": 32, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 33, + "name": "EchoInput (Luca)", + "description": null, + "pathName": "EchoInput (Luca)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.224", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 33, + "monitor_id": 33, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 34, + "name": "FireStick", + "description": null, + "pathName": "FireStick", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.225", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 34, + "monitor_id": 34, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 35, + "name": "BlinkMini (1)", + "description": null, + "pathName": "BlinkMini (1)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.226", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 35, + "monitor_id": 35, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 36, + "name": "BlinkMini (2)", + "description": null, + "pathName": "BlinkMini (2)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.227", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 36, + "monitor_id": 36, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 37, + "name": "Smarther", + "description": null, + "pathName": "Smarther", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.228", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 37, + "monitor_id": 37, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 38, + "name": "BlinkSync (cucina)", + "description": null, + "pathName": "BlinkSync (cucina)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.229", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 38, + "monitor_id": 38, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 39, + "name": "BlinkSync (garage)", + "description": null, + "pathName": "BlinkSync (garage)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.230", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 39, + "monitor_id": 39, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 40, + "name": "BlinkSync (casetta)", + "description": null, + "pathName": "BlinkSync (casetta)", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.231", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 40, + "monitor_id": 40, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 41, + "name": "Blink DHCP", + "description": null, + "pathName": "Blink DHCP", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.232", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 41, + "monitor_id": 41, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 42, + "name": "Blink DHCP", + "description": null, + "pathName": "Blink DHCP", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.233", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 42, + "monitor_id": 42, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 43, + "name": "Blink DHCP", + "description": null, + "pathName": "Blink DHCP", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.234", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 43, + "monitor_id": 43, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 44, + "name": "Luce_scrivania", + "description": null, + "pathName": "Luce_scrivania", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.235", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 44, + "monitor_id": 44, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 45, + "name": "Lampada_scrivania", + "description": null, + "pathName": "Lampada_scrivania", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.236", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 45, + "monitor_id": 45, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 46, + "name": "Led_cucina", + "description": null, + "pathName": "Led_cucina", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.237", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 46, + "monitor_id": 46, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 47, + "name": "Albero_natale", + "description": null, + "pathName": "Albero_natale", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.238", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 47, + "monitor_id": 47, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 48, + "name": "Luce_colazione", + "description": null, + "pathName": "Luce_colazione", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.239", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 48, + "monitor_id": 48, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 49, + "name": "Telecomandi", + "description": null, + "pathName": "Telecomandi", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.240", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 49, + "monitor_id": 49, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 50, + "name": "Presepe", + "description": null, + "pathName": "Presepe", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.241", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 50, + "monitor_id": 50, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 51, + "name": "Lampioncini", + "description": null, + "pathName": "Lampioncini", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.242", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 51, + "monitor_id": 51, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 52, + "name": "Bollicine", + "description": null, + "pathName": "Bollicine", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.243", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 52, + "monitor_id": 52, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + }, + { + "id": 53, + "name": "Casetta", + "description": null, + "pathName": "Casetta", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.244", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [ + { + "id": 53, + "monitor_id": 53, + "tag_id": 3, + "value": "", + "name": "Device", + "color": "#27AE60" + } + ], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true + } + ] +} \ No newline at end of file diff --git a/kuma/generate_configuration/monitor_object.json b/kuma/generate_configuration/monitor_object.json new file mode 100644 index 0000000..8acdcda --- /dev/null +++ b/kuma/generate_configuration/monitor_object.json @@ -0,0 +1,89 @@ +{ + "id": 1, + "name": "Gateway", + "description": null, + "pathName": "Gateway", + "parent": null, + "childrenIDs": [], + "url": "https://", + "method": "GET", + "hostname": "10.0.0.2", + "port": null, + "maxretries": 0, + "weight": 2000, + "active": true, + "forceInactive": false, + "type": "ping", + "timeout": 48, + "interval": 180, + "retryInterval": 180, + "resendInterval": 0, + "keyword": null, + "invertKeyword": false, + "expiryNotification": false, + "ignoreTls": false, + "upsideDown": false, + "packetSize": 56, + "maxredirects": 10, + "accepted_statuscodes": [ + "200-299" + ], + "dns_resolve_type": "A", + "dns_resolve_server": "1.1.1.1", + "dns_last_result": null, + "docker_container": "", + "docker_host": null, + "proxyId": null, + "notificationIDList": {}, + "tags": [], + "maintenance": false, + "mqttTopic": "", + "mqttSuccessMessage": "", + "databaseQuery": null, + "authMethod": null, + "grpcUrl": null, + "grpcProtobuf": null, + "grpcMethod": null, + "grpcServiceName": null, + "grpcEnableTls": false, + "radiusCalledStationId": null, + "radiusCallingStationId": null, + "game": null, + "gamedigGivenPortOnly": true, + "httpBodyEncoding": null, + "jsonPath": null, + "expectedValue": null, + "kafkaProducerTopic": null, + "kafkaProducerBrokers": [], + "kafkaProducerSsl": false, + "kafkaProducerAllowAutoTopicCreation": false, + "kafkaProducerMessage": null, + "screenshot": null, + "headers": null, + "body": null, + "grpcBody": null, + "grpcMetadata": null, + "basic_auth_user": null, + "basic_auth_pass": null, + "oauth_client_id": null, + "oauth_client_secret": null, + "oauth_token_url": null, + "oauth_scopes": null, + "oauth_auth_method": "client_secret_basic", + "pushToken": null, + "databaseConnectionString": null, + "radiusUsername": null, + "radiusPassword": null, + "radiusSecret": null, + "mqttUsername": "", + "mqttPassword": "", + "authWorkstation": null, + "authDomain": null, + "tlsCa": null, + "tlsCert": null, + "tlsKey": null, + "kafkaProducerSaslOptions": { + "mechanism": "None" + }, + "includeSensitiveData": true +} \ No newline at end of file diff --git a/kuma/generate_configuration/outer_structure.json b/kuma/generate_configuration/outer_structure.json new file mode 100644 index 0000000..86679ce --- /dev/null +++ b/kuma/generate_configuration/outer_structure.json @@ -0,0 +1,5 @@ +{ + "version": "1.23.11", + "notificationList": [], + "monitorList": [] +} \ No newline at end of file diff --git a/kuma/generate_configuration/sample.xlsx b/kuma/generate_configuration/sample.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..80b0cbbbb01b5e9001718a547b1094bd7e79689d GIT binary patch literal 21368 zcmeFZRX|XNUztGa8>(LEHTLBUXgAb_BNfPjdAh@!=~oPdFVqQQZHP=KI7w1n+!olR_= z^;A6UO`LS-+-xmSZ)TFs0J4Cw*c+lS7Zz;EmSHFJ&-ANJY(Tu9TEKl((=ciOPDGY4U7cA4cO2Zmc zLa*$pLYgeHx@4s&B8XQt%7ucGJ)6NEcBzt~$UT$B+TyX0t8TUsV)V~xU*3r%bu=K#+Hqyv`Vh$UZ;52HBG);=&Fxj)C22Q5I@g# zM%;9Xzx41yMLLLfC~|>!Ki!SXJN!zGCJ-0VVeaY#+*2=qytRlAewa`y?mw=)+-#|p z?FkVm0C6|zc{F#9<#D5p$KBK@8^qU3yGw)j0tmDBcTgaO|CX!GsthDIfEF1*D#8MC zRnO7H+KHa-Oux{5RLD5@qEF7~n$BC0@ct?ibeM5rw4P1SL9%RDAs<*FH7J z6q4es_fX&>s$d6!iu-l>zKpG|^TeEt5Z&#tR7D}9a+9>URfncMIk-T6CU;B~bEw+> zj^w&^NH^ynsu*!-nPJ>oQ-8a6aaF>WY2Z+d{{kgUdr;X@7Z zf{^mB>d?AY_Pmp%=}f<+)RJR({%}s2v$=G%5hp{ll^X96YogmnY*l4*PK!Fj97ir< z4?Sb+-fNM}9+X#aTDhzdC1Muj2c~K9VY0kiKg}kV%kgZF@9fY6l_M9Ufl&ly8-Qi& zeXwtB=L3O4Y`$kOT3}ckUH(@0{-IeO?JQ zl!%&6N5!1A7lmkrwtb*#FQ-w4%EH?{PEveJ<~-F>7iE1tugA;81oOaSnvD+Dv`mXO zi;>6_jd2}02Dsf9qZ=E(K_Vti(agXv1qMbp{hBxXJ4<>~>_U9JFqg(a0`swoLaNFGi?!2#X)9vAtX6J&aDL?+GcAz_972vswtW3j4#d5*dslg^XHUhV`i!ie$^Y(c_ zf`#z<1|1t)Q{h1;N}YNFmp6%bO!6LKf_y~;wz`X%6}p#^$m^6n07`xAmzd($d$rjc zemidtROfwkjvmC$9 zb?gpa>MCGOkd6V#xhYYoFa1;15V5rMG_cbL^ zZdXOa%@+h5C0e&zVV0W&1e687Ve!Mk_M)Dj}K-eApvjMCq!dOy{8p(&tID-8&Y`&r){5@nT(6hrg5Han5Zb#$a(a;IZi zx-=Fe-WdeOo1}7G&$q!T#Pr=xOcheK8n#_e+%xO9+o#O&^&!4W0!!A6Vy@rMe(#yv zwC;NKC^4mO6xedzy3@7tOLmuOR*U7Zwx@0B= z$uax@8TvnSSE{_k;0chk;(%6cAShr!?*6sL{d)%gYrO*o)TDqJ;D7gDXX2#gcLuoN z^N{YK*)E5~H-#}SFRGBPmQ_fGdgL%!Yol_0kLQf!-)wb7X)}eSEZ2+^rq7%=J9s26 z8&s4HxM1x+GpCwibnoTW?g_)2ncMFX(4r;ks_E$2rkAbcD zSxoryq|=6m1)Z>ssDo-gwTo&TJZ4Atu;yi0L}n`@x*cGD_k|mMw6ob{(TR!c_QjdG z#DX1-fKAGarELhbc+o}I00H;N$=6QW9vBAI5aDycRU<8xZUa+(VV*E#YPIT*UqG6K z9aiDvDrVNACv$523>W8f@>EaFGRc4E_~rcs_CG~V7d&{e0VWU-UkMNp;PS6o-^tv> z#Mz1d&xP@0`p-&Qja?-~3_Yj5#Y4R3+Y;UpariR&TT`dJqGBDt26~7wl94W6xw6{} z@=$%BTywOg_rmXbnn4ENwLuW4CPu*~HiE$LyH<(RES=NKtJby&CYJPSB3s2i=Y~@d zK?woBOp8>l%w(IWfVpg}l~soWBIXw-$(UNMjee=(rXutbPpq$UPMUYbD`1M42q2Q8 zQJ;eAyTkG;q!`|cmNl;y@d-27e+2p|M@?m!C$0x2snjlJ4=0}i)g#8#J>y3v81JT; zRI=!>#NWq~Cg*2|QUtQ|g&eP@U?zfP*adU< z!hZJ5B}>fFm<31gL1E(<&~CeNryaw6A01)9hL4(|K9D>hyWXD2L@S(;o;OBEyFO%* ziRy9Zq5{vV8;7yb-FFuoYFwg}wP(n_p}i5lsBXh1k;bs=+@5fR5@u+qc%Gns9?2XU z6{iyGNlCPeZU>#LDb>?X>!-V)XT1|DPucAOq5`8YIpm^G)~MfxJa9rq*m8Y2dA&us zK+l@giIW$LdgJn5DBDBRVZT#kRPSwM|tb#r(UnzL7jp5J!i94O0gK{!PpKpIQPCIPdStI$E)75(u4Rd7tWPWEPzC zagOL--PG25FR;JXt_&`JUGI8rC_+t&&TAjc?IT1?3{rB5m!c|~=6`><++BM3wbWXh z`~I}#=lgs*uI%yj>#(Qi^-=ll{QmXrxb;2twe`H`{n~FgE_c)K@r~)-fZ8U?hDkHmkD#LM}RKXWNvB{#J?XA`Oo$&o$$8HdAk%s0M= zXH@>nyYcq)rHKK}P7PEv6i*NGmDos3e21X6V5yAYrv`c`UnP22VOSx3k*&v+cy=M% z;5GOi7%npy&v+lf3yRkUh9*KVF|ZsxXb+M-v5|Gc8p8UQUqcs!&w;&4dg!6(!M)+V z*VIII!D~=$IN#A!T+<`TTj-&qw?(NmQHV&0rfcE47@dudY>D(VY6_>jmY#(3bGq$4 zEyAP0k*H$w*h6jM)@k>orCr{c?k&`?@BH>}=2EMloCCv?#b$7X*+YM$UlkXVhcMkc zt6@*Uj2#!#YTeEuCd@&38XXPItP6EF{ZLUncsrLGXcOY>YBH(R#U@t57PNy~$86Uc zNlVQT7@M2%qNn2sqAX1d4eFD?rHY||`;v zIi+i{?SR6q@A+A}*ps;56Xx7c^#5gWPtpB`lEVw2P;4I3p@=1iAG4j&xiy}imNf_! zUkFBy2!L}ISLnkO(qE?NEtLl(eCl2qleph<+|&j~qhDHP_4pNq{_+vr@=S(ts;Z9^R)WU+EEZ zq*BxKvjeDTb#eRVgOvGo#Mhl#> z9Xm6kG0s<_?vDn?jxEi(T5$i3qa7PNmUg&u)crE2%RNrFDyt^c)M)(Dl1aDI?87p3 zX=VQGvSU_;@K6*5)0&_-Jp#uq5dUpu;>|S8vh^)ii11K7#Z?-GL%Q!X4j%W`4^Y0w zf}$D^HqVaJ?d8`cg2U)qg5{-8N2g=6jdB3z0me_mR`S=8MD#v!-1>j=q%0>8+_-&0 zn)vo^;Obh6wa)*cM7pr3Cf%*8hI5_-VU6VC)1fFJ=9J^=aQzmUd3P8(y0`<&>U!z zYGlWcaBNz+Og*BYZ*458=%&(@z1J^pscFFV8Tsq?F zvHYj$a*lha;Uuoe`_8OQZ+4uzvL)iUX05G$wUj$z0^ zJ&-B?AtzO(rK}^;KejG#zFQ&h-!#f)e|LP*n08JiS>@%sc}BK}I2n{W5oef{j7^tg zO4tUtsVK)E_(PIr7_U#cBuU0tAt+mfvm*3Q?35&BxuYEiFOhykf#fD2EM($1E*FNN zYuS?L7iJ>6_uW~s?)fi2&q1&2aq7Ug_54k!^Ao!N!~v=!PAU0*RWP~ubVxN%Lf&xx zNO6V)T$;G~x!g+bCS18hT*lZP4EsadG*`8R2Eg|ZbuQl{@EJ=xK-*RMwL<{`yY~K_ zT8W}FRzZ%Rt%=wK&>urf^4=l#LV9X)YQo*NoN|+#yQe5vzU+XI`PWc%`AHLJ`HDcsaRSLUVx={au1I!0Zy56Srd>>gsfOBOy z?qErWMV~Vg|0GENCANadxG7vM>2e3w>k_<69ngUu^?#If*J0?*M5W9x#A9g1{{PG{ zqiy}sp;7c_gBUQp1=qTNfIC=@(HRXf`VVlF584W$Ijx1Yh^`blE(O&4!=^0C%RbT!>2wZGV<`; zy)44C2oQd4u;Y^3d-D-?%7PouJnFquQJz@iygX4c$ibSmtS&KxKNTLAH#T!JM%2WXgT z0jNO5H6H?TuK^lawuHjJL}bb1UYkGP)Tx}IHx&+5TvAeph!}^>rC?1 zC1vjf^Z{YNOuV_~?Il%f$1D5Pe8*YlOT?lQ3|XjXl0lz?)T28p*1?25A~wKM_0vOg z^163cK^1+74{WIq7B=2q+&rqodJPrk9#ydxN6GkKsxsSklo>{pJ6jaM?#BKisQ^e@ zyU9_sxX~tmX@dAmY(|q~_HUk{HXW4Owvp~xSdK_dC}i16K0Xu9Rx6kThsb#Jsdy&R zj4wXkFwVA1s1v)WYc#l|e``8ftD(AZkg`LUOZtl^()BN%Z5mvvKRn;$Q+!$Gn_0>_ z)QfS=pw(}K<$ny(eA~bzS*-J{=PDLvC)grP(xe3cED^PJ6U7iHa$pJimAGJ)6&&8b zAupt`94?|{0fGTs6aWVsh)f7}P_gze(%@gDeIdXXJ1hWZczu`{fOQrisW5be$`3p^ zy{LEqU(JD%k!W!>KJc*lQwae2V+M$lN|WQ;hxax>%F)gpC3(OKx=r@pDMYhPKY>aZ zj$LI1LGyl?ZzEC*e~f;SV^uM@!ajXT?H482rp9)&lTe?85h36B+`!_@IOV8(PuZr2 ze40WFwqIQ}wK0PY0?L+xB_WDkb_puA5u1|i+|C&GwC(wv zZlT~AO0Z0{Ur$(PXR2tNvP|b)herkSsG14qcgl59Xbq{y%`;?IEtn9^rD#W*;wzR! zqL#;)G5~xTaA1FAD*&=PVGYqGD^1ztpaCU6`aNN*0D!`)KLFX3{;kfi^550PFC~xl zrlzX6WFR28;F40A~MgLoF_=8R8g!M8?YPP9Xl>O{= zO6ZTM^<*7`DUMNFXfZ#@)!%$g7f7(hdUR+?I>lrtLI#6OfuD`NArXJUffg4E2e zJaFc0aw+%!)@M2YCipR7pwHc8j0~rku+;wzXx!u zZ3F^n07oYr{_bTETH5aa4%sjr06ByM06FNtK_2@jWWj&N z+qZwk+u`34nGfLL{}NK-L)&g}PK)lCVfk5rtFect4HBLHXcwt+2M3~-5!PF@Ta0xR zzWIIU1T@MeGQ!pdh#9B*Sa5beoOKI!p%_!DFchbT*HWW&{MUrvC^N>Bo zLZ+Ea%ZKsiwJ1DfSUWP^D`gcUho34`;~X{V*ql|O1xAd&vCZd^8I(B+6{UU)8v3s` zi;!kf!`Jlub6Qav?}aQ>W;by?rWfO4Ow%r9nUb(Y!eDC5Y%E_U=iXX+3C4r;>Er#{ z0-k02^>(K07E7pB{!2w&~nFRnHLQ$trBFW>xX*M|CoCz>dMV>4Y zR#0PF?v&YXDs=P&2`C@PIl~vU2PTkv_V?JCvsCkL>y`GN9sEWTaWVN+WMQjE{>1yv z%m&ZL1r@7&5LphfX@DNhGO06SAtb?q1qgj?WyFPQ)F?Etc`UdH@&ORp@;77=7wSPn za06MWh>uxRB@?QkJ;ks-u#P-fBq=~ZdF)qEnQgIp6=79GwGV5Bma^h{I{X0hpdq(( z?N`ji-KLXWWqsEU44MrqPgpCbp5P+EZVpfm zf?*gx_=-@GJ0Yb=p)I9?-3=;?N2otk2vL!L3-4c|mSRkgDpSF2Yk{h#52Y(0M(;jW zh=isqm||F!{L>WM)^hfD6P=heW1lE$HZ>R!j)1*K@Huj_Au)QE z$zPV_mQr2s%tC9RNYJ|@6(ZBQt5-3)ljS1~7P)Ox+iNTtE%e}Yki=-bwQ^CJ?~U}} z&ZIxu28-xMG`oLd2xCM5TlL20qcVR2chv*cU6W)4wz`dEN4u&~^v(=CM6&92-eEP~ zM&%E!x;0cv^QZm#YYL8R(W)1lVG-bS7v5$t(V#K8zY14pi%2Vd=o*baJjbyVqoCa| zmQLiT3{bhchmE4W9$XAFF!g8hqhAld;i<@(fs3w=noUN07+I#ks>;6RweCuD7k!-o zi-&1gLg%|5oZ&#JgLuI$dzlE_h|Oh4F=Rp!_zbM4Wx0+ayerd-ePLCgBr~&m$rg&5 zln$gc`}lL`cQKs#UmIXA zJvdn)Ko7|0|ACz5FTt1&O_*|3+jm&8pF42ddsMjS2}(UkBRy!UcREqSP%$Nmi>t=ANYb#YSp;DX?MeO*8~S zuYr{Uj7ry6@v!wy1}yJmtvAlkroVsQg#!7!X&Gau>V3`9RjbpPZ{V=;d-^f*7`2%~ zINQ`d!`oG(-$CAePWfE2`yF=uhRS}{SlvEL31hLZwFgk_N7$*)LH3Exp9tOGv@gJI$l=hRdzihKnaspDUnPX|S6E5LcfO z+D%5=w7Lw^J;4LL3A)#(n0iV5+tHhq1bpZxy(O8e)7 zCAJR+up>ppkL(OmJt~|~mOjT55v+&sr%hwoN*x~B`-aMy%?9p)Y*Hb4sJ8q8gzS;0 zJS(R+lb4j|%#C5D2#Tsr(!j{Deqqt*x`%)1t)=*sakO;kfnEoho1y>#tSAESstnF& z@`jl>{kf#}f17v6&305L-UQ-9h`jn4tO4Fj%sZie_r6T~&BaP+u5ITAY*@+|C0i(-RsZ z#C8np9?pXN=yT=TNg(Uw(!29`qA3G(Gc<2k1K(a0!JVYCFnnma=7j~Pw~ppdcEk2( zm$R*ac?9#_z-_t+9EY;31z|BVfIZJFq8Ivi3)h+0)e&!R5`L@Wiek+R-QE!I-60LI z#3a_SIo9UiV|*8);F;QNwzOB19T(@IJ+tKpn>zxIh&f5-m!~AtJfL6QP_I9(`;8(W zLP`-O9&P4`XX@$4p7>=B+YFnaV1mx6o8GSvU1lWHS?^sKPCh*(2pi)fC32IUjITrE zk~*~$W!!f8p~Jdc%|-A%b-z@URsKLwo7^ORs)ED)4VN~MCfx+Owwshk@_lxp;mfyv zBh~Lh$}?s;YS5+D%~>Ef(tWdC7D{1Z}k9aLD12GKJ!o4p})O%D?vw7#kNK&-7By zTCV9}es=h5E;g#T&`oPTF~G8KkvzyOwYT9>=%?pdBDDhc0vO=;_dfwym9cKS%Z3=D zXR-}x&p|3G6-6rWh5sC>2-veRQ#8?bwUyqYJmO%Yoc0IP9Wg@>o)*QxcDjM>rmvr` zF9H50!MUBD-rLKSr(66$T5E0`|HhcSp7P`4@Ayx8IdAS>evf=zoxXnF{6v0|-ri47 ztD6JYtMk`!S2^6F1Fyf7V=k&gIbK_@-n2aKm%6^$dtINt-5ppMc#c1uu`nZ+Sg|rs z$#^{_V{$LyI?WG~b6VhxV&@>r;dWCgc^_@pF7D=s&Uil5%OO{`Rwa1vp!~OAjBjyWCQ=t)*%(Bv( zO$CJ_WpTz}6TO5u2&k%9teQ;^&-#T8riM(1ucsNSy;!qJq5%z5@UpucGA@77HXkIAe`18pC!rxP}yr%*pp z!b*47%8s8BmpTnw@1q$#S9YyjX?b#onB=WOIJd<5fW`P-W05D$0%iW z+{^qPH@X@$LEhrM;v{LDe}(yNkOmb@^IL$ocCW-PNOh}vxwOqhceji|F29E$n_JO;0_~E zx;LrAg3axd%GN_;xfSHg&uM5%w+?^vp6|?pn*fcK=1C9rx`Bpcy7dcaa#nQI;ze)Y z8J$t(60$mWWw`T=s;7t-S?1sk06{+u5d6Yrb!H?}o<%O26fQhTR#XA73mCz(S9BwJ zLL_GcFc|e}NSN)fwgD=ODV%kgcC8b#G1>XzV*jOV>zC>@akIYc5cph$ae{}GtxA0k zFI(_p#Tf&|y%xki7;>lhF*NGM1ui9++2}U`sdh)RcIU_=N;sV{%#Sg42J)4L6d>#? z7n0BOzs?O1I+#m#2GUXc`NXthHB&4jEulJuSzWxE4|<`+1q1?pH_aQBeAy5nv}{a2 z!*!bBh(uZ1(in8@&g9Ie1n3K4$gNgqATZ>cU%UYm&0_*YMl05k3J?)|Qz)V&+1V?~ znvxiKkR05(Wf$p-O0?3wNs6>#{`Z5Wb_M5FV+4*bYA#I9qbOn@;qo(#b}>gFP_=+U zL0}dFrjHL7L&B!M<<$)$Tqofp-gAmO9$!fE|E(ryppuZ0zm=ttnx3HkG9oEUU9ZYC z!>p!6IVLmhUoU+H+gnf~1ta-LM)ugopetr+C}oKhZdO$kpPH)&vU{|;a+G$6VS-^+ zRFb;@{#UH?c9H|MU50o57jJWE2iNY7fQ}Kb(`> z3+rwi*~Zqib<#Siadt9pbIY0H7iOl!P8<{vGR|8i%A(>lAv@mWIRQ}kuA4Y$(xzjA zS&GSJlInfZOlv7kSNJILx31FC`y5}-Yv;?kuCJcrUt#+bQ}wzPu6VPem%ozEr}|lO zP_lT-OC(1lnLyh%_ilO*v$H_%YQ%ZG`G7u(g6zeA)wH*`}ptr%QRLdRhZZ(!X>ST5qfrL?j)* zh0=vITe`LVL^JL`ibdIg3li)~q?%TYhp#+SQkGFCX5ZJ0{>{V(^f|m2rH1ABXpI6&LU81yMx(Ma{O+IeC;p0K)Sn zFn{)U2BGhX0!T-$WxvNqKy2*yqTsCtbHibVSS~SpBAxssg${WX@CDQCf+qGdX~dM2;xo=$ljSsTYpM ztLzXC-(TWo+L5V?xcQA(8x%fIChVwBrbO2yY#2V?Z$cRS^J;R#rgosrYJu0=n8W~p zgTXhve1B-%oKEpfiBp7;6|XzWc#p}^uTPx3hMrW!Gm`51$%rOc`hY9!7F)0f25uMO z8DHl+TcWh%(Og>;CUXL>>vD_&kJC??#F6j57~XL!+#Ck>N}&;y9h9x1M8wpe)6;|H%~?|b8}snr~K@|RCbOY!t`q8 zb5fr%U>-kgn^hy$Pr*Brs-hm5QoYU62R2Epuv(;YOoO5}xxY-dsWY>42y{oMj6m8f zdc+o4m(tX5a4lIm(R&unUp4nA_0xi_XIRnp5{4gz4nP!PKzF@PPz*Z@6Q#c z^SXSsCR0}F*P27OcejF;>7CvIW8~*oM>+DH_4~|3$-l?J2Rnq^e84(qqahi}Ru$VR z+AM*mh#xXoztXHFlhE!ukn>Y8{fwJ|(-byY@6C#oxm9szCeJe}3Ui@G%blrymb-S3 ziRJQaq4@d;---XLAf%IX&_^Yqv(REsD~hg zs%sXkyOORx>#RPjaFUjIe?&gb-3$S0f=mZQXYLVq zralsj&~;43965r3ZRHyKw~E0{yeiTa-2N_tn7A%bu0wXDB6W3oYRK3K|EM6xlS#&a z%sRA${YSSQ{W0^U&d52=TM3o?=e597j z5Le7EzBFuhn9?R3PakUIFZRVu}>yj&+Ia}lk(XG}xhxc5so5kh1=punf__<)KaLNwT z?AWRWWl3h@Tc}Y6nIgqq){66*_ew}@q`yz)W84jNZ`twprmTOSf=GNPy&C{*5M@FD z0)qc*`E_#kur_h}_#!=_re(LvhUr64_fB}BGdq|_gOwV^73&Y8!$^o#r>0q8UC@b% znmvklxA~lqNXwbV7Sn3#5$-YnIOVoY#Ob%>c(8`Dpg`q_s{J@ZRFI5@mWli7p!SW* z5j#dSBpsDh9C9wtElSTXo&BkINXM(Q_FIW#Tiwc z+7+t6$|3LX=@?JGI}S47Cy1t<-q29PC)d7*sfp)xC01i)eCjlN7mjxZBt`vJ5Gt#L z{l)VT5ir?b@M4x{#a%gQQ>=}vYk`)MTx6xMzS|Tf2T3hBVtfOIPh9A*!j4#W&}Y3e1(3k#8i$8Umi5F zf)v1c{6*VHY$-Csg!Ld9uYG$4ZrS?&lp|z0Q*ip?Xc^8`iP?#>Y|s`ci^dHm+^S+8o5t(Xi;>b_jHiQ00Yd(iz?}iC#2_Gk8_o=Cbi&y4bCf)8lq;H43|r zwgsaQ(}+$ZoY7fYkrM6kj}u#w{z{Qe*m@fmM(lrGSh|L#^D~hh{aqPZVNaM3KY?M4 zPvJo_nf#q!%D$mfCs}A@_TFtS=<2cQ(5e8&i{R`WlYSY}%(owckABpMwYP+Kz%z8K zwGSWptm1_eMLr4|x0Roj_Dh98mKcnCi5~@-)5HR`c&^OD3T5;uuZevLPri@8MsrZc z(?Rg;fu)VhoiX^1LIU=AdN;T1fw}p+*yr{`1%}s(&Eu{g=)~f}&xM>cLEo1NtKXJ; z86kS6bZ2p2eHyb&D>I3mmHpD&XM?}nqSLF{;_A?=RT5tdzdz;9g1-lzcKO5!FoMrk z8C*aqbT#rmt{TvY7s`om=JW}8P4L2^y!+rj*fL&%vP;>Yl#G(PMsYx?Nj7yxM7e+G z_1$Ogy${UuQoy{rlu?$$L>tz|V`jk*Ar-vGk#irGaUU?UyF~j>#Wo*QQePUN*sdT4 z0z&;e+szFeO^lVD9W89l{v^G3#;W707;@-&tL0|EAoVZs>f^pPX(cJ-Vs*4}gAmvK zL{=~e;zbT~Xoi++7LQb(6*fvcHlb^`6^uK$gNw=h!vTK`es7DD6+7QeH61U`Qg&0m zYnu%;)n{kU_lIrYgekMvt)Kl1I;Zr9dOrN`+b6m2-;SOQ$W2z?9J_Hs&G`7wue0s6 z-%Gsis`rxDyB&gF+}@ox_|LnjpR(_Tm2cCLq1e|e|6g}Hvq5+~1`MzFcf4eIfc zgx)dtb(vLD!x%tIXWu1g=OCz|n;LFXJ4P>pB;*AoBj|-AV_=vCwKJgV)f_ONO&>j+ToW8yA#|6$yR&OlrIVLwE(2KoQO(xCc!vzm*XB7YQ|?G@M6tkBV3x$s=+^StO@_ z9`}PJyoW_Rjpz|N!YqxWXA!2A;+@guGRxWbQy$afNfJoB^=OxV$GM zXa2w|@tHTM69RDiGyz~zbAK?j_&iYLWPw0*2?bDSPeMT?Qu9F6ehFZm_&hk|Cc!{1 zi5W;}7$U(-5_4a$g*akNl>8T@CjP)D@tJoh7(zi%(lUQAy!bpYWx-(C@p-7oO+ta15;L&Skwk*bq-CLC>+woQ zkTVF-Cq#n$q?F-c@CkXu$j%~xi4rr&(3Zp|4;zrWF9PyS51J6zMIjIt`GT6}@#z2U zmdu?V0)9>?sA-0fmPG>gU$@;@-_?RP+i-%@f*xEE^*-%93wnPFrw7T0*EA18|CtxU zX8!;EwmVJzC<5KHU?Jz*PdB}c-{Uvb-+!`dwQ}BEIhbd-ELr!+&2R9lR#)tHy)*5( zxKWnK*H-ALJzJdAu6M`Fi*{LFtP{CKg}GidKYc;Iy2?0b(iO{EzwF{lh!b53^Eq~0 z*svK{Njy)LS@O=TL+G^XNsBX@XY)Ho2->vES=-<(=jt(8oZGc%BUsl-djH zv{X%JGRARAWZcgZ*QO-kzT&MRFg44qYC z$hmSO{OpZ5=5VFri`l@4Yl@4-#(8?*^K5y(B%I=xF;x*=;Y>xzA-!zJshZ@ftoEyP zxT4zBtmx;fR>?wk;YA&o>3@=T8X38x~6^V#!` z?oC`yw#uiAqQFb`{uRhRYpzF9ei?#CFA|RluAj1A`MTaZyT0c?MTH_(Gpc=Wshw7; za78;OIj7XUgbDkk9CEKe|B=6)r+ z!U4k?jjYk7o%rs4TSMP9%tC*D$6s?)cPv}{>8d>x^=6expHahc#C)KOQ zf@{1knx(mTzB{}znQCXJHoqasNzYgsFSKhq!^KHgPby>QJk{DJT|UuBIh#Sp+D>Z* zoCb}79Fk1^zUHan{<_nZ)mNd{5XVG^TS^8gXZU;roExj0<31(D##B||%4u#4YD$#W z5JLJ;+034}zBxasv_Fz(Z6s%ux<$6#mpVVRS<}xz=*2H9PqvJf_2keN`>w#u+T!74 zm3mCOacT-iePh7%+l8u4g|l{1+>PJJFU$G30Daeku=QiYj?@&` zxUk(ZFOMBj-EOV0(^rNg<~?)prMU6qudj2r-8JhLOYUe{6Xg=#Bd;aX_X~D%2nQDH z=i1k2F!$Mz-u0Zc3QM#a4#qxC>Lq6`SFi&9 zsCH+5d7005XpEZ{UMREez8^TWt?krj*^|m;mG=9*pqWZS+;w>4+T`lwWXQKxpxM>3 z;PhC%vf%e0&t-DkFiH0T7H}azE6HCA`NyfQzfb7=btjtdQP4y7e@aZSSYFhj~>Z?~Hu1W9yzWww*Tjn!QIgTkp0?m(hkdQqi z4D-4Rub;F%g7q9HYpBq)Jn;tebln-Ca&l4;!}029u=OE|q_3C*zTa2sW1-9A`3_bj zBRm*JAER()swymPuJj#^aYWC5K!o?IgOc@9J;&*cZLLJZqw zeVH)1%@%@UX`(z`&bTu;yPlJL7T2p&bVh9nA|N*YSvWaNvZOmo&iUrYSX?KJFo=jZyuVJOUr3k6NUsN z-4vf37d?XZ4q03A?$)_I~O(@y?ip5aule*z?N#0p&h=O^p`eiEnFo> z%c`*f=YsUe!ojtAE>jJ+ zcAqY*#0>g*_EchCN`V-fA4gs}r(r78=z@wj3ez1eHm*YBEs8OR#dFmE^zIBoi@n@N4VTN5FI}((V)vYP7mZj1l3ysdV7mnGULXkJky?b=UG5TuA@0Om%EZI1e69S2kD3x@!U+fGwLN1Bz@GfL2w zR2(*nyZ0vBx^HP3j=f>zZ%dB$!%O|1DwCgB)hY{Pn#DpXro!WdoT;^IX}FqHrNykb zq3HV!sme_WI-2LxCTaLHOPck!j?!AwH70s=7Ex5BTXU8?60zCS zxnsO5ko3s4rz!5!H?_5|cihth^Q}4LPh2^R^nUlx_k5R&8$9=|%{ceE@3V9#?@p0N z&@;BuNCqA?pc+4hA9yZsz8Sr!CT}L!1zyFGS?9edubBt>G8A=@&E6}#fg}$;y#agU z6CU^>>>rY42|r>W|7OIa$Ekmj|4O&52f7Iyd+P)C5*s|7|AK~S^rX7w24v_1F^?3E z*#qwl%yIAzdLfPc#(vR(tP8X&or^Wf9J zkz3~dEZjHjGF{Qj&(If|A9md>VE68%_gwlRtaqs{EcVzfo$ouK-Ynrqo5iB!; z|D|L0(uVZLcHsj3j;o$<;njQEyN2Jx@`m({X7-#>40-6X2S!g7dK1DHWcbRf*Cyi4 zZD=}rZ@O{tLvY`vk*V|HoQ{Wz= z*-eOz=Ypb74|ELIn?tWGhJa16J#gN?+QMTYi@)-Hw?6-Tp%?nVb%Yb$gL+91gwuP- z2)x$+92XZS2l}Hsa2_PBMN#Pz&OQ_|8%U*G6n`T|+a9~%H@O@(+>F;2ugv~6XjnVS zG0aa`La+E*N;zs=iT&BRSo6|AJ5ZbBAHDZh0>Q2Hd=SyZ}TZ2V-TA5w*xc3eoP4&>ITO z+z)cmufKuoPTSObeGTDmF=IQmBIdSEpl;L{c*ew8VU40C6H$a@f3IPJ_4DzAoE4$& z>{&s*Ufv5&6$!nvR0^gMcW&P#d4sSvT%EwWcFfxAvtIL`Y`qhQF<8QwoV#4!hDsKQ zBS!LnTHnq=EInOjzkFi|R_(mT8l~*bsY5B9+So@~k6ic-+=Xyb(s-Eh0b|BEtGaH32i* z`9gVEEY3>Lqr00=GzG->_Ou!ZIFnP-Wt&4Gb}17CVnU9u#S6hsm%5sDN^f;e78 zUkdDj9i=;oI-++VQUJWio%3Nm!fzGV?G@ucl~9h(WwUaC0@4of1{@^73j&Poj1(O0 z?49V1>>N!#e*Xo$2j~C37XVOOdM7GM4=|vHY=XZFk9uX6;Bg7928?;H2-FokpeJ=y zFO!mup52|xu2z2`7t&31y4uf@ZWt6??8Cs+vPdC89;5^sY%cr3CQiT4lvUWvRRUJo z9Egk8S0MU-R#-drV_Q+~gOe}VdR8A`o3}*gsc&D|Ia873)8z^?d-ph37B22hIhTJ{ z%)F<5lkNkRzWfa=$61Pb$`5Ri?0nH8QsZJ)9sHf)py3q-N6T(cmk<5d8z+7{&%M{E z@YE?;>H9B5%1?>a2)KVg7`Aw0?(G%6za{MK59YtVS{!e>Cd6EuZ^a3g<#!m0Z;7n7 zO+TnSS^iAM^O838DD&g9BDa52z8|9Su5bD`@9yQ_Q`^)XSnT9vPtBQn{mZ|FF^iNs zC#$H`O`LQ_!!vWvo^sB*yYCdvJv=cs+={K%tWRP)ibD<2q= znDhVta!$qc0u!MQa1ufQIT0on6pW@pV30wdS<9EPJ)|NU~!4epq5f-z0z;YI<|z!>k&ZEe>cG^L*R z5)I1kxLq<~;i@^UvlHe=e^3dptkZnx@xWU{|B;Bsu_LAK^Lcff-~RkiSKr06=4xqA z@8-52`d{VKgAW7*e*2uUFtA8ZYuW9_TE9L&tMHW=2%38FLMm|l)E7B;1}=P zQqu!g_g#~X;L>#dekeP-^UXztFBYvYe2R_>tM7X_t2XuZU68eqOaI+_e!Bl-bN2(1^{;0JfWj%z~KjCw*0LMsD9FBe!dj`L#B%|Sme1Yy!~ z9=IbgP7gsh1$}uh!jw2wtfqh$`=XnIzMcqSim@)(6!g_a=mwzAh$0NwWCAt-F+Yl~ z6@7XIp>=@;L@WAa3%UvD<2ncvG9A#v0P83Zx`F7!BnShu9l-{o4U%9TG(k5Mwc&s; tl7V5J7Xt%EGXh;ZYLSnu-PjjNJG24_@MZ<3WYFw1FGCJ6Gko(0@c